Compare commits

..

1 Commits

Author SHA1 Message Date
renovate-bot
ef7f180606 ⬆️ Update dependency ansible to v5.4.0
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-23 02:02:57 +00:00
3 changed files with 10 additions and 18 deletions

View File

@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y git \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# renovate: datasource=pypi depName=ansible # renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION=5.5.0 ENV ANSIBLE_VERSION=5.4.0
RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION} dnspython RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION} dnspython
COPY entrypoint /bin/entrypoint COPY entrypoint /bin/entrypoint

View File

@ -24,9 +24,7 @@ steps:
- name: Run ansible playbook - name: Run ansible playbook
image: harbor.sebclem.fr/sebclem/drone-ansible-runner image: harbor.sebclem.fr/sebclem/drone-ansible-runner
settings: settings:
verbosity: ${verbosity=1} verbosity: 1
limit: ${limit}
tags: ${tags}
playbook: sites.yml playbook: sites.yml
galaxy_file: roles/requirements.yml galaxy_file: roles/requirements.yml
check_syntax: true check_syntax: true

View File

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