14 lines
278 B
YAML
Executable file
14 lines
278 B
YAML
Executable file
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Put a common configuration on all servers
|
|
- hosts: all,!unifi
|
|
roles:
|
|
- baseconfig
|
|
- basesecurity
|
|
- update_motd
|
|
- ldap_client
|
|
|
|
# Install logrotate on all servers except PVE
|
|
- hosts: all,!unifi,!pve
|
|
roles:
|
|
- logrotate
|