From 02d16a578770d2b8597111242b470b879a01be29 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Sat, 8 Aug 2020 22:00:38 -0400 Subject: [PATCH] Add dispatcher sample host vars --- .gitignore | 2 ++ host_vars/dispatcher.example | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 host_vars/dispatcher.example diff --git a/.gitignore b/.gitignore index 8f765d5..bb3baff 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ inventory host_vars/* !host_vars/.gitkeep !host_vars/frame1.example +!host_vars/dispatcher.example + diff --git a/host_vars/dispatcher.example b/host_vars/dispatcher.example new file mode 100644 index 0000000..b50a4a0 --- /dev/null +++ b/host_vars/dispatcher.example @@ -0,0 +1,18 @@ +--- +msmtp_email_address: user@domain.tld +msmtp_smtp_server: "smtp.domain.tld" +msmtp_smtp_from: "piframe@domain.tld" +msmtp_smtp_user: "piframe@domain.tld" +msmtp_smtp_password: "password" +monit_containerized: true +monit_notification_email: "{{ msmtp_email_address }}" +monit_smtp_server: "{{ msmtp_smtp_server }}" +monit_smtp_user: "{{ msmtp_smtp_user }}" +monit_smtp_password: "{{ msmtp_smtp_password }}" +monit_filesystems: + - { name: "picturesfs", path: "/opt/pictures", alert: "80%" } +monit_web_user: "admin" +monit_web_pasword: "password" +rtty_server: true +rtty_user: "admin" +rtty_password: "password"