ansible-edda/plays/system.yml

32 lines
692 B
YAML
Raw Normal View History

---
2022-12-05 21:52:25 +01:00
- name: "play : system : ups"
hosts: "ups"
2022-12-04 17:06:18 +01:00
roles:
2022-12-04 17:29:43 +01:00
- role: "system_ups"
tags: "role:system_ups"
2022-12-05 21:52:25 +01:00
- name: "play : system : smart"
hosts: "smart"
roles:
- role: "system_smart"
2022-12-04 17:46:10 +01:00
vars:
smartd_conf_file_path: "files/system_smart/smartd.conf"
2022-12-04 17:34:50 +01:00
tags: "role:system_smart"
2022-12-05 21:52:25 +01:00
- name: "play : system : zfs"
hosts: "zfs"
roles:
2022-12-04 17:06:18 +01:00
- role: "system_zfs"
tags: "role:system_zfs"
2022-12-05 21:52:25 +01:00
- name: "play : system : all"
hosts: "all"
roles:
- role: "system_mail"
tags: "role:system_mail"
2022-12-04 15:36:03 +01:00
when: the_nine_worlds_production | bool
- role: "system_base"
tags: "role:system_base"
vars:
2022-12-04 17:46:10 +01:00
motd_dir_path: "files/system_base/motd"