aboutsummaryrefslogtreecommitdiffhomepage
path: root/tasks/deploy.yml
diff options
context:
space:
mode:
authorPaul Bonaud <paul.bonaud@fretlink.com>2018-11-30 16:53:40 +0100
committerPaul Bonaud <paul.bonaud@fretlink.com>2018-11-30 16:54:00 +0100
commit4483bb9cdc1031a85a3a1fc1ea186a7390c807ba (patch)
treea51d68a0d2fc5470b307d34800823f1ab87259dd /tasks/deploy.yml
parent245e7912bf31c7d55541f1be45b3cffc11d7f3b3 (diff)
downloadansible-clever-4483bb9cdc1031a85a3a1fc1ea186a7390c807ba.tar.gz
ansible-clever-4483bb9cdc1031a85a3a1fc1ea186a7390c807ba.tar.zst
ansible-clever-4483bb9cdc1031a85a3a1fc1ea186a7390c807ba.zip
fix(deploy): Yet again a missing chdir to execute from app root
Diffstat (limited to 'tasks/deploy.yml')
-rw-r--r--tasks/deploy.yml4
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