Defined Type List
+ + +-
+
+
+
- + + + + + +
diff --git a/doc/_index.html b/doc/_index.html index 09dfdaf..29a3698 100644 --- a/doc/_index.html +++ b/doc/_index.html @@ -127,6 +127,30 @@ +
+
+
+
|
+
manage directory structure including file system permissions and selinux context
manage service status
+allow single entries in pg_hba via define
manage directory structure including file system permissions and selinux context
manage service status
+allow single entries in pg_hba via define
postgresql_cd::server::pghba::pg_hba_rule Module name: postgresql_cd Author: Arne Teuke (arne_teuke@confdroid.com)
+ +
+ + + +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45+ |
+
+ # File 'manifests/server/pghba/pg_hba_rule.pp', line 22
+
+define postgresql_cd::server::pghba::pg_hba_rule (
+
+ Optional[String] $pl_auth_type = undef,
+ Optional[String] $pl_auth_database = undef,
+ Optional[String] $pl_auth_user = undef,
+ Optional[String] $pl_auth_address = undef,
+ Optional[String] $pl_auth_method = undef,
+ Optional[String] $pl_auth_option = undef,
+ Optional[String] $pl_auth_order = undef,
+ Optional[String] $pl_auth_description = undef,
+
+) {
+ $pl_pg_hba_conf = $postgresql_cd::params::pl_pg_hba_conf
+ $pl_pg_hba_rule_conf = $postgresql_cd::params::pl_pg_hba_rule_conf
+ $pl_data_dir = $postgresql_cd::params::pl_data_dir
+
+# create rule fragment
+
+ concat::fragment { "pl_rule_${name}":
+ target => $pl_pg_hba_conf,
+ content => template($pl_pg_hba_rule_conf),
+ order => $pl_auth_order,
+ }
+}
+ |
+