2020-05-03 18:45:07 +02:00
|
|
|
#!/usr/bin/env ansible-playbook
|
2018-12-23 12:20:19 +01:00
|
|
|
---
|
|
|
|
# Put a common configuration on all servers
|
2019-11-01 15:38:35 +01:00
|
|
|
- hosts: all,!unifi
|
2021-12-13 02:16:13 +01:00
|
|
|
vars:
|
|
|
|
locales_default: en_US.UTF-8
|
|
|
|
locales_additional:
|
|
|
|
- fr_FR.UTF-8
|
2018-12-23 12:20:19 +01:00
|
|
|
roles:
|
2021-12-13 02:16:13 +01:00
|
|
|
- debian_common
|
2021-12-13 02:53:00 +01:00
|
|
|
- apt_common
|
2021-12-13 02:16:13 +01:00
|
|
|
- locales
|
2019-07-22 21:04:58 +02:00
|
|
|
- basesecurity
|
2021-01-23 14:35:03 +01:00
|
|
|
- logrotate
|
2021-11-28 10:15:38 +01:00
|
|
|
- update_motd
|