🔨 Try with args as list

This commit is contained in:
SebClem 2022-03-04 15:37:11 +01:00
parent c85bcb9d44
commit 8cfae7c22a
No known key found for this signature in database
GPG Key ID: 3D8E353F900B1305

View File

@ -23,13 +23,13 @@ else
run_command chmod 400 /root/.ssh/id_ed25519
fi
args="$PLUGIN_PLAYBOOK"
args=("$PLUGIN_PLAYBOOK")
if [[ -n "$PLUGIN_VAULT_TOKEN" ]]; then
echo "Adding vault token to 'credentials/vault_token'"
run_command "mkdir credentials"
echo "$PLUGIN_VAULT_TOKEN" > credentials/vault_token
args="$args --vault-password-file credentials/vault_token"
args+=("--vault-password-file" "credentials/vault_token")
echo ""
fi
@ -45,23 +45,25 @@ if [[ -n "$PLUGIN_GALAXY_FILE" ]]; then
fi
if [[ $check = true ]]; then
args="$args --syntax-check"
args+=("--syntax-check")
fi
if [[ $verbosity != "0" ]]; then
args="${args} -"
verb="-"
for i in `seq 1 $verbosity`; do
args="${args}v"
verb+="v"
done
args+=("$verb")
fi
if [[ -n "$PLUGIN_LIMIT" ]]; then
args="${args} --limit \"$PLUGIN_LIMIT\""
args+=("--limit" "\"$PLUGIN_LIMIT\"")
fi
if [[ -n "$PLUGIN_TAGS" ]]; then
args="${args} --tags \"$PLUGIN_TAGS\""
args+=("--tags" "\"$PLUGIN_TAGS\"")
fi
run_command "export ANSIBLE_HOST_KEY_CHECKING=False"
run_command "ansible-playbook $args"
echo "ansible-playbook ${args[@]}"
ansible-playbook "${args[@]}"