From ff33fd058e078f21af235343b77c0ab3497c1567 Mon Sep 17 00:00:00 2001 From: Samir Benfares Date: Tue, 21 Jan 2025 19:35:35 +0100 Subject: [PATCH] fix: setup script for ansible module (#4000) --- .bin/scripts/setup-local-env.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bin/scripts/setup-local-env.sh b/.bin/scripts/setup-local-env.sh index 8e7ec6f1b..31c4075ac 100755 --- a/.bin/scripts/setup-local-env.sh +++ b/.bin/scripts/setup-local-env.sh @@ -15,7 +15,7 @@ MSYS_NO_PATHCONV=1 docker run -it --rm \ -e ANSIBLE_CONFIG="/root/.infra/ansible/ansible.cfg" \ alpine/ansible sh -c 'chmod 0600 /root/.vault_pwd.txt && ansible all \ --limit "local" \ - -m flux-retour-cfas \ + -m template \ -a "src=\"/root/.infra/.env_server\" dest=\"/root/server/.env\"" \ --extra-vars "@root/.infra/vault/vault.yml" \ --vault-password-file="/root/.vault_pwd.txt"' @@ -25,7 +25,7 @@ MSYS_NO_PATHCONV=1 docker run -it --rm \ -e ANSIBLE_CONFIG="/root/.infra/ansible/ansible.cfg" \ alpine/ansible sh -c 'chmod 0600 /root/.vault_pwd.txt && ansible all \ --limit "local" \ - -m flux-retour-cfas \ + -m template \ -a "src=\"/root/.infra/.env_ui\" dest=\"/root/ui/.env\"" \ --extra-vars "@root/.infra/vault/vault.yml" \ --vault-password-file="/root/.vault_pwd.txt"'