Compare commits

...

2 Commits

Author SHA1 Message Date
renovate-bot
69a8e6abcb Add renovate.json
Some checks reported errors
continuous-integration/drone/push Build was killed
2021-12-15 16:50:50 +00:00
b2cd0ef1e6
🚑 Fix ssh key
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build is passing
2021-12-15 17:50:35 +01:00
2 changed files with 21 additions and 9 deletions

View File

@ -3,6 +3,12 @@
check=${PLUGIN_CHECK_SYNTAX:-false} check=${PLUGIN_CHECK_SYNTAX:-false}
verbosity=${PLUGIN_VERBOSITY:-0} verbosity=${PLUGIN_VERBOSITY:-0}
run_command(){
echo "\$ $@"
$($@)
}
if [[ -z "$PLUGIN_PLAYBOOK" ]]; then if [[ -z "$PLUGIN_PLAYBOOK" ]]; then
echo -e "\e[31m'playbook' setting not defined, ABORT!\e[39m" echo -e "\e[31m'playbook' setting not defined, ABORT!\e[39m"
exit 1 exit 1
@ -11,21 +17,22 @@ fi
if [[ -z "$PLUGIN_PRIVATE_KEY" ]]; then 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
echo "$PLUGIN_PRIVATE_KEY" > /root/.ssh/id_ed
chmod 400 /root/.ssh/id_ed run_command mkdir /root/.ssh
run_command echo "$PLUGIN_PRIVATE_KEY" > /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'"
mkdir credentials run_command mkdir credentials
echo $PLUGIN_VAULT_TOKEN > credentials/vault_token run_command 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)"
echo "\$ ansible-galaxy install -r $PLUGIN_GALAXY_FILE --force" run_command ansible-galaxy install -r $PLUGIN_GALAXY_FILE --force
ansible-galaxy install -r $PLUGIN_GALAXY_FILE --force
echo "" echo ""
fi fi
@ -46,6 +53,5 @@ if [[ -n "$PLUGIN_LIMIT" ]]; then
args="${args} --limit \"$PLUGIN_LIMIT\"" args="${args} --limit \"$PLUGIN_LIMIT\""
fi fi
echo "\$ ansible-playbook $args" run_command export ANSIBLE_HOST_KEY_CHECKING=False
export ANSIBLE_HOST_KEY_CHECKING=False run_command ansible-playbook $args
ansible-playbook $args

6
renovate.json Normal file
View File

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}