diff options
author | EuAndreh <eu@euandre.org> | 2020-08-02 19:03:25 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-02 19:03:58 -0300 |
commit | cf61d10caeae36bd4ce5d10eb075408b5a58dc8b (patch) | |
tree | f370d60ea17e843cbf73757ffab4d09d82896b5f /scripts | |
parent | provision.env.yaml: Tweak relative paths (diff) | |
download | toph-cf61d10caeae36bd4ce5d10eb075408b5a58dc8b.tar.gz toph-cf61d10caeae36bd4ce5d10eb075408b5a58dc8b.tar.xz |
Revert "provision.env.yaml: Tweak relative paths"
This reverts commit cb15c40682b990697087380e102cd39fca47f6d9.
Instead of the previous solution, copy the provision.yaml file before running
the Ansible playbook.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci/deploy.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/ci/deploy.sh b/scripts/ci/deploy.sh index 1a7e400..0383911 100755 --- a/scripts/ci/deploy.sh +++ b/scripts/ci/deploy.sh @@ -100,5 +100,6 @@ echo "Done." echo "Running the Ansible provision.yaml playbook..." create-known-hosts-file -ansible-playbook -v ./generated/provision.yaml > ./logs/ansible-provision.txt +mv ./generated/provision.yaml ./provision.yaml +ansible-playbook -v provision.yaml > ./logs/ansible-provision.txt echo "Done." |