Skip to content

Commit

Permalink
Fix merge error for #1096 (#1112)
Browse files Browse the repository at this point in the history
  • Loading branch information
neethajohn authored Sep 12, 2019
1 parent 7843f70 commit 5e04d50
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ansible/roles/test/tasks/common_tasks/update_supervisor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
- fail: msg="supervisor_host is not defined"
when: "supervisor_host is not defined"

- name: "Reread supervisor configuration"
shell: "supervisorctl reread"
become: "yes"
delegate_to: "{{ supervisor_host }}"

- name: "Update supervisor configuration"
shell: "supervisorctl update"
become: "yes"
delegate_to: "{{ supervisor_host }}"

0 comments on commit 5e04d50

Please sign in to comment.