ansible/plays/utilities.yml

13 lines
301 B
YAML
Executable File

#!/usr/bin/env ansible-playbook
---
- hosts: server
vars:
root: "{{ glob_root | default({}) | combine(loc_root | default({})) }}"
ntp_client: "{{ glob_ntp_client | combine(loc_ntp_client | default({})) }}"
roles:
- root
- common-tools
- sudo
- ntp-client
- root-config