diff --git a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html index f4b96a1..d5442b2 100644 --- a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html +++ b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html @@ -115,7 +115,21 @@ 17 18 19 -20 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34
# File 'manifests/server/files.pp', line 6
@@ -133,6 +147,20 @@ class confdroid_nagios::server::files (
       content => template($ng_nagios_cfg_erb),
       notify  => Service[$ng_nagios_service],
     }
+    # custom cfg files
+    ## temp place holder, this will be done via defines 
+    ## and PuppetDB exports and imports in the future
+    file { $ng_target_command:
+      ensure   => file,
+      owner    => 'nagios',
+      group    => 'nagios',
+      mode     => '0644',
+      selrange => s0,
+      selrole  => object_r,
+      seltype  => nagios_etc_t,
+      seluser  => system_u,
+      notify   => Service[$ng_nagios_service],
+    }
   }
 }