Skip to content

Commit

Permalink
Allow complete deployment when not using configure option
Browse files Browse the repository at this point in the history
Fix an issue that prevents a complete deployment when the
archivematica_src_configure_dashboard and/or
archivematica_src_configure_ss vars are set to "no"
  • Loading branch information
hakamine committed Feb 8, 2021
1 parent e5f4f1f commit c4dd94b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
when:
- archivematica_src_install_ss == "rpm"

- name: "Configure storage service"
- name: "Complete storage service deployment"
block:
- include: "ss-db.yml"
tags:
Expand All @@ -143,7 +143,7 @@
tags:
- "amsrc-ss"
- "amsrc-ss-websrv"
when: "archivematica_src_configure_ss|bool"
when: "archivematica_src_install_ss|bool"


#
Expand Down Expand Up @@ -194,7 +194,7 @@
when:
- archivematica_src_install_am == "rpm"

- name: "Configure AM environment"
- name: "Complete AM deployment"
block:
- include: "pipeline-dbconf.yml"
tags:
Expand All @@ -216,7 +216,7 @@
- "amsrc-pipeline"
- "amsrc-pipeline-websrv"

when: "archivematica_src_configure_dashboard|bool"
when: "archivematica_src_install_am|bool"


#
Expand Down

0 comments on commit c4dd94b

Please sign in to comment.