39 lines
568 B
YAML
Executable File
39 lines
568 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
- hosts: debian
|
|
vars:
|
|
apt: "{{ glob_apt | default({}) | combine(service_apt | default({})) | combine(loc_apt | default({})) }}"
|
|
roles:
|
|
- apt
|
|
|
|
- hosts: all
|
|
roles:
|
|
- cli-utils
|
|
- vim
|
|
- ssh
|
|
|
|
- hosts: templier.adh.crans.org
|
|
roles:
|
|
- bind
|
|
- docker
|
|
become: yes
|
|
|
|
- hosts: perso
|
|
roles:
|
|
- sudo
|
|
- systemd
|
|
- pacman
|
|
- ntp
|
|
- texlive
|
|
- xorg
|
|
- i3
|
|
- terminal
|
|
- notification
|
|
- mime
|
|
- audio
|
|
- multimedia
|
|
- pass
|
|
- communication
|
|
- browser
|
|
# - scripts
|