22 lines
420 B
YAML
22 lines
420 B
YAML
---
|
|
|
|
# execute this role
|
|
- name: "use toolbox"
|
|
hosts: "all"
|
|
become: true
|
|
serial: 1
|
|
tasks:
|
|
|
|
# install updates
|
|
- name: "install updates"
|
|
tags:
|
|
- "update"
|
|
- "never"
|
|
ansible.builtin.include_tasks: "tasks/update.yaml"
|
|
|
|
# initiate reboot
|
|
- name: "initiate reboot"
|
|
tags:
|
|
- "reboot"
|
|
- "never"
|
|
ansible.builtin.include_tasks: "tasks/reboot.yaml"
|