diff --git a/doc/_index.html b/doc/_index.html index bd8f09f..6846631 100644 --- a/doc/_index.html +++ b/doc/_index.html @@ -83,6 +83,11 @@ +
# File 'manifests/main/dirs.pp', line 6
@@ -125,6 +137,7 @@ class prometheus_cd::main::dirs (
) inherits prometheus_cd::params {
require prometheus_cd::main::install
if ($ps_prom_host == $fqdn) and ($manage_prometheus == true) {
+ # prometheus directors
file { $ps_main_dir:
ensure => directory,
owner => 'root',
@@ -135,6 +148,17 @@ class prometheus_cd::main::dirs (
seltype => etc_t,
seluser => system_u,
}
+ # data directory
+ file { $ps_data_dir:
+ ensure => directory,
+ owner => 'prometheus',
+ group => 'prometheus',
+ mode => '0750',
+# selrange => s0,
+# selrole => object_r,
+# seltype => etc_t,
+# seluser => system_u,
+ }
}
}
the data directory for prometheus
+-17 18 19 20 @@ -371,10 +377,11 @@ 55 56 57 -58+58 +59
# File 'manifests/params.pp', line 17
+ # File 'manifests/params.pp', line 18
class prometheus_cd::params (