15 lines
262 B
YAML
15 lines
262 B
YAML
---
|
|
|
|
# install updates
|
|
- name: "install updates"
|
|
tags:
|
|
- "update"
|
|
- "never"
|
|
ansible.builtin.include_tasks: "update.yaml"
|
|
|
|
# initiate reboot
|
|
- name: "initiate reboot"
|
|
tags:
|
|
- "reboot"
|
|
- "never"
|
|
ansible.builtin.include_tasks: "reboot.yaml"
|