ci: fix molecule prepare
ci/woodpecker/push/notify Pipeline was successful Details
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/test Pipeline was successful Details
ci/woodpecker/push/docs Pipeline was successful Details

This commit is contained in:
Robert Kaussow 2024-02-03 22:47:06 +01:00
parent c94647981d
commit b0eba13a65
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 5 additions and 15 deletions

View File

@ -10,7 +10,6 @@ ansible:
rules: rules:
exclude_files: exclude_files:
- molecule/
- "LICENSE*" - "LICENSE*"
- "**/*.md" - "**/*.md"
- "**/*.ini" - "**/*.ini"

View File

@ -3,18 +3,9 @@
hosts: all hosts: all
gather_facts: False gather_facts: False
tasks: tasks:
- name: Bootstrap python for Ansible - name: Bootstrap Python for Ansible
raw: | ansible.builtin.raw: |
command -v python3 python || ( command -v python3 python ||
(test -e /usr/bin/apt && (apt -y update && apt install -y python-minimal)) || ((test -e /usr/bin/apt && (apt -y update && apt install -y python-minimal)) ||
echo "Warning: Python not boostrapped due to unknown platform." echo "Warning: Python not boostrapped due to unknown platform.")
)
changed_when: False changed_when: False
- name: Wait for apt lock
shell: while fuser /var/lib/apt/lists/lock >/dev/null 2>&1; do echo 'Waiting for apt list lock.' && sleep 10; done
changed_when: False
- name: Update package cache
apt:
update_cache: True