toolbox/alpine-upgrade.yaml
Simon Cornet ca0d331181
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore: migrate bare ansible_* facts to ansible_facts[] syntax
2026-05-19 09:19:07 +02:00

15 lines
353 B
YAML

---
# execute this role
- name: "upgrade alpine"
hosts: "all"
become: true
serial: 1
tasks:
# force update time
- name: "import alpine upgrade tasks"
ansible.builtin.import_tasks: "tasks/alpine323.yaml"
when:
- "ansible_facts['distribution'] == 'Alpine'"
- "'3.22' in ansible_facts['distribution_version']"