25 lines
557 B
YAML
25 lines
557 B
YAML
# The ordering of plays in this file is important. First we do all the plays
|
|
# that do not depend on any other plays. Then, we do plays that have
|
|
# dependencies.
|
|
- name: Configure all hosts to have a common basic configuration
|
|
hosts: all
|
|
roles:
|
|
- system-users
|
|
- system-utilities
|
|
- vim
|
|
|
|
- name: Configure the fik workstation
|
|
hosts: fik
|
|
roles:
|
|
- cinnamon-desktop
|
|
- generic-desktop
|
|
- i3wm
|
|
- fail2ban
|
|
|
|
- name: Configure the kiwi workstation
|
|
hosts: kiwi
|
|
roles:
|
|
- generic-desktop
|
|
- mate-desktop
|
|
- nvidia-driver
|