ansible-edda/plays/system/main.yml

32 lines
604 B
YAML
Raw Normal View History

2022-12-07 21:36:08 +01:00
---
2022-12-08 23:27:25 +01:00
- name: "system : ups"
2022-12-07 21:36:08 +01:00
hosts: "ups"
roles:
- role: "ups"
tags: "system:ups"
2022-12-08 23:27:25 +01:00
- name: "system : smart"
2022-12-07 21:36:08 +01:00
hosts: "smart"
roles:
- role: "smart"
vars:
2022-12-08 23:19:54 +01:00
system_base_smartd_conf_file: "files/smart/smartd.conf"
2022-12-07 21:36:08 +01:00
tags: "system:smart"
2022-12-08 23:27:25 +01:00
- name: "system : zfs"
2022-12-07 21:36:08 +01:00
hosts: "zfs"
roles:
- role: "zfs"
tags: "system:zfs"
2022-12-08 23:27:25 +01:00
- name: "system : all"
2022-12-07 21:36:08 +01:00
hosts: "all"
roles:
- role: "mail"
tags: "system:mail"
when: the_nine_worlds_production | bool
- role: "base"
tags: "system:base"
vars:
2022-12-08 23:19:54 +01:00
system_base_motd_dir: "files/base/motd"