Files
ansible-msp-automations/playbooks/linux_patch.yml

16 lines
317 B
YAML

---
- name: Bootstrap — ensure Python is available
hosts: linux_hosts
gather_facts: false
tasks:
- ansible.builtin.import_tasks: ../roles/preflight/tasks/bootstrap.yml
- name: Linux patching
hosts: linux_hosts
gather_facts: true
roles:
- snapshot
- preflight
- linux_patch
- report