Move playbooks in a separate directory
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
7
plays/apt.yml
Executable file
7
plays/apt.yml
Executable file
@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env ansible-playbook
|
||||
---
|
||||
- hosts: debian
|
||||
vars:
|
||||
apt: "{{ glob_apt | default({}) | combine(service_apt | default({})) | combine(loc_apt | default({})) }}"
|
||||
roles:
|
||||
- apt
|
35
plays/base.yml
Executable file
35
plays/base.yml
Executable file
@ -0,0 +1,35 @@
|
||||
#!/usr/bin/env ansible-playbook
|
||||
---
|
||||
|
||||
- import_playbook: apt.yml
|
||||
|
||||
- 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
|
Reference in New Issue
Block a user