15 lines
298 B
YAML
Executable file
15 lines
298 B
YAML
Executable file
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Put a common configuration on all servers
|
|
- hosts: all,!unifi
|
|
vars:
|
|
locales_default: en_US.UTF-8
|
|
locales_additional:
|
|
- fr_FR.UTF-8
|
|
roles:
|
|
- debian_common
|
|
- apt_common
|
|
- locales
|
|
- basesecurity
|
|
- logrotate
|
|
- update_motd
|