🚑 Fix echo command
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build is passing

This commit is contained in:
SebClem 2021-12-15 18:07:45 +01:00
parent b2cd0ef1e6
commit 17394546f7
No known key found for this signature in database
GPG Key ID: 3D8E353F900B1305

View File

@ -5,7 +5,7 @@ verbosity=${PLUGIN_VERBOSITY:-0}
run_command(){ run_command(){
echo "\$ $@" echo "\$ $@"
$($@) $@
} }
@ -18,21 +18,21 @@ if [[ -z "$PLUGIN_PRIVATE_KEY" ]]; then
echo -e "\e[31m[WARN] 'private_key' setting not defined !\e[39m" echo -e "\e[31m[WARN] 'private_key' setting not defined !\e[39m"
else else
run_command mkdir /root/.ssh run_command "mkdir /root/.ssh"
run_command echo "$PLUGIN_PRIVATE_KEY" > /root/.ssh/id_ed echo \"$PLUGIN_PRIVATE_KEY\" > /root/.ssh/id_ed
run_command chmod 400 /root/.ssh/id_ed run_command chmod 400 /root/.ssh/id_ed
fi fi
if [[ -n "$PLUGIN_VAULT_TOKEN" ]]; then if [[ -n "$PLUGIN_VAULT_TOKEN" ]]; then
echo "Adding vault token to 'credentials/vault_token'" echo "Adding vault token to 'credentials/vault_token'"
run_command mkdir credentials run_command "mkdir credentials"
run_command echo $PLUGIN_VAULT_TOKEN > credentials/vault_token echo "$PLUGIN_VAULT_TOKEN" > credentials/vault_token
echo "" echo ""
fi fi
if [[ -n "$PLUGIN_GALAXY_FILE" ]]; then if [[ -n "$PLUGIN_GALAXY_FILE" ]]; then
echo "Installing Galaxy dependencies ($PLUGIN_GALAXY_FILE)" echo "Installing Galaxy dependencies ($PLUGIN_GALAXY_FILE)"
run_command ansible-galaxy install -r $PLUGIN_GALAXY_FILE --force run_command "ansible-galaxy install -r $PLUGIN_GALAXY_FILE --force"
echo "" echo ""
fi fi
@ -53,5 +53,5 @@ if [[ -n "$PLUGIN_LIMIT" ]]; then
args="${args} --limit \"$PLUGIN_LIMIT\"" args="${args} --limit \"$PLUGIN_LIMIT\""
fi fi
run_command export ANSIBLE_HOST_KEY_CHECKING=False run_command "export ANSIBLE_HOST_KEY_CHECKING=False"
run_command ansible-playbook $args run_command "ansible-playbook $args"