From 46cd3abd238a4d9211d9a31677cf518724b504b2 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Fri, 25 Aug 2017 22:58:10 +0200 Subject: Added nagios server policy --- services/applications.cf | 2 ++ services/applications/fcgiwrap.cf | 15 +++++++++------ services/applications/nagios.cf | 13 +++++++++++++ services/main.cf | 5 ++++- 4 files changed, 28 insertions(+), 7 deletions(-) create mode 100644 services/applications/nagios.cf (limited to 'services') diff --git a/services/applications.cf b/services/applications.cf index 07ac9e0..6a5af1d 100644 --- a/services/applications.cf +++ b/services/applications.cf @@ -3,6 +3,8 @@ body file control inputs => { "services/applications/bareos_fd.cf", "services/applications/check_mk.cf", + "services/applications/fcgiwrap.cf", + "services/applications/nagios.cf", "services/applications/sshd.cf", }; } diff --git a/services/applications/fcgiwrap.cf b/services/applications/fcgiwrap.cf index af2e8f8..7c491c0 100644 --- a/services/applications/fcgiwrap.cf +++ b/services/applications/fcgiwrap.cf @@ -1,8 +1,11 @@ -bundle common fcgiwrap +bundle agent fcgiwrap(user, group, mode) { - vars: - use_fcgiwrap:: - "packages" slist => { - "fcgiwrap", - }; + methods: + freebsd:: + "any" usebundle => install_package("fcgiwrap"); + "any" usebundle => add_rc_conf_line("fcgiwrap_enable=\"YES\""); + "any" usebundle => add_rc_conf_line("fcgiwrap_user=\"$(user)\""); + "any" usebundle => add_rc_conf_line("fcgiwrap_mode=\"$(mode)\""); + "any" usebundle => add_rc_conf_line("fcgiwrap_owner=\"$(user)\""); + "any" usebundle => add_rc_conf_line("fcgiwrap_group=\"$(group)\""); } diff --git a/services/applications/nagios.cf b/services/applications/nagios.cf new file mode 100644 index 0000000..156fdfb --- /dev/null +++ b/services/applications/nagios.cf @@ -0,0 +1,13 @@ +bundle agent nagios +{ + vars: + nagios:: + "packages" slist => { + "nagios4", + "nginx", + "php56", + }; + methods: + nagios:: + "any" usebundle => fcgiwrap("nagios", "www", "770"); +} diff --git a/services/main.cf b/services/main.cf index e6d7642..e861bf4 100644 --- a/services/main.cf +++ b/services/main.cf @@ -1,4 +1,4 @@ -bundle common classify +bundle agent classify { vars: any:: @@ -33,4 +33,7 @@ bundle common classify "legend", }; "mail_servers" or => { "legend" }; + methods: + nagios:: + "any" usebundle => nagios; } -- cgit v1.2.3