diff options
author | paulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com> | 2018-11-30 17:05:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-30 17:05:17 +0100 |
commit | e1ffebc7abc311393dfca85495a5c90ffe6dad04 (patch) | |
tree | a51d68a0d2fc5470b307d34800823f1ab87259dd /tasks | |
parent | 245e7912bf31c7d55541f1be45b3cffc11d7f3b3 (diff) | |
parent | 4483bb9cdc1031a85a3a1fc1ea186a7390c807ba (diff) | |
download | ansible-clever-e1ffebc7abc311393dfca85495a5c90ffe6dad04.tar.gz ansible-clever-e1ffebc7abc311393dfca85495a5c90ffe6dad04.tar.zst ansible-clever-e1ffebc7abc311393dfca85495a5c90ffe6dad04.zip |
Merge pull request #27 from paulrbr-fl/chdir-all-the-things
fix(deploy): Yet again a missing chdir to execute from app root
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/deploy.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tasks/deploy.yml b/tasks/deploy.yml index 3bd74ee..ae7e5f6 100644 --- a/tasks/deploy.yml +++ b/tasks/deploy.yml | |||
@@ -58,7 +58,9 @@ | |||
58 | - skip_ansible_lint | 58 | - skip_ansible_lint |
59 | 59 | ||
60 | - name: Watch deployment status | 60 | - name: Watch deployment status |
61 | command: "clever-wait-deploy.sh '{{ clever_app_root }}'" | 61 | command: "clever-wait-deploy.sh" |
62 | args: | ||
63 | chdir: "{{ clever_app_root }}" | ||
62 | async: 900 | 64 | async: 900 |
63 | poll: 0 | 65 | poll: 0 |
64 | register: long_command | 66 | register: long_command |