18 lines
612 B
YAML
Executable File
18 lines
612 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
- hosts: server
|
|
vars:
|
|
needrestart: "{{ glob_needrestart | default({}) | combine(loc_needrestart | default({})) }}"
|
|
ntp_client: "{{ glob_ntp_client | combine(loc_ntp_client | default({})) }}"
|
|
root: "{{ glob_root | default({}) | combine(loc_root | default({})) }}"
|
|
sudo: "{{ glob_sudo | default({}) | combine(loc_sudo | default({})) }}"
|
|
unattended: "{{ glob_unattended | default({}) | combine(loc_unattended | default({})) }}"
|
|
roles:
|
|
- root
|
|
- common-tools
|
|
- sudo
|
|
- ntp-client
|
|
- root-config
|
|
- needrestart
|
|
- unattended-upgrades
|