diff --git a/doc/file.README.html b/doc/file.README.html index 0d1824e..aacc289 100644 --- a/doc/file.README.html +++ b/doc/file.README.html @@ -78,7 +78,7 @@

Installation

@@ -88,12 +88,13 @@

manage directory structure including file system permissions and selinux context

  • manage service status

    +
  • + +

    Optional:

    +

    Repo Documentation

    diff --git a/doc/index.html b/doc/index.html index 7b832e9..3ac12d3 100644 --- a/doc/index.html +++ b/doc/index.html @@ -78,7 +78,7 @@

    Installation

    @@ -88,12 +88,13 @@

    manage directory structure including file system permissions and selinux context

  • manage service status

    +
  • + +

    Optional:

    +

    Repo Documentation

    diff --git a/doc/puppet_classes/postgresql_cd_3A_3Aparams.html b/doc/puppet_classes/postgresql_cd_3A_3Aparams.html index bf84673..88756e7 100644 --- a/doc/puppet_classes/postgresql_cd_3A_3Aparams.html +++ b/doc/puppet_classes/postgresql_cd_3A_3Aparams.html @@ -384,7 +384,7 @@
  • - pl_manage_roles + pl_manage_content (Boolean) @@ -395,25 +395,7 @@ —
    -

    Whether to manage roles

    -
    - -
  • - -
  • - - pl_manage_databases - - - (Boolean) - - - (defaults to: true) - - - — -
    -

    Whether to manage databases

    +

    whether to manage roles and databases

  • @@ -429,6 +411,7 @@
     
     
    +24
     25
     26
     27
    @@ -472,12 +455,10 @@
     65
     66
     67
    -68
    -69
    -70
    +68 -
    # File 'manifests/params.pp', line 25
    +        
    # File 'manifests/params.pp', line 24
     
     class postgresql_cd::params (
     
    @@ -502,8 +483,7 @@ class postgresql_cd::params (
       String $pl_server_crt           = 'server.crt',
       String $pl_server_key           = 'server.key',
       String $pl_ca_crt               = 'root.crt',
    -  Boolean $pl_manage_roles        = true,
    -  Boolean $pl_manage_databases    = true,
    +  Boolean $pl_manage_content      = true,
     
     ) {
       $fqdn                     = $facts['networking']['fqdn']
    diff --git a/doc/puppet_defined_types/postgresql_cd_3A_3Aserver_3A_3Adatabases_3A_3Adb_df.html b/doc/puppet_defined_types/postgresql_cd_3A_3Aserver_3A_3Adatabases_3A_3Adb_df.html
    index 47fc1b3..4520cb9 100644
    --- a/doc/puppet_defined_types/postgresql_cd_3A_3Aserver_3A_3Adatabases_3A_3Adb_df.html
    +++ b/doc/puppet_defined_types/postgresql_cd_3A_3Aserver_3A_3Adatabases_3A_3Adb_df.html
    @@ -218,9 +218,9 @@ define postgresql_cd::server::databases::db_df (
       Optional[String] $pl_db_action    = undef,
       String $pl_db_extension           = 'pg_trgm',
     ) {
    -  $pl_manage_databases = $postgresql_cd::params::pl_manage_databases
    +  $pl_manage_content = $postgresql_cd::params::pl_manage_content
     
    -  if $pl_manage_databases == true {
    +  if $pl_manage_content == true {
         # create databases
     
         if $pl_db_action == 'CREATE DATABASE' {
    diff --git a/doc/puppet_defined_types/postgresql_cd_3A_3Aserver_3A_3Aroles_3A_3Arole_df.html b/doc/puppet_defined_types/postgresql_cd_3A_3Aserver_3A_3Aroles_3A_3Arole_df.html
    index 72cf6be..30c86c9 100644
    --- a/doc/puppet_defined_types/postgresql_cd_3A_3Aserver_3A_3Aroles_3A_3Arole_df.html
    +++ b/doc/puppet_defined_types/postgresql_cd_3A_3Aserver_3A_3Aroles_3A_3Arole_df.html
    @@ -209,9 +209,9 @@ define postgresql_cd::server::roles::role_df (
       String $pl_role_status              = 'CREATE ROLE',
     
     ) {
    -  $pl_manage_roles  = $postgresql_cd::params::pl_manage_roles
    +  $pl_manage_content  = $postgresql_cd::params::pl_manage_content
     
    -  if $pl_manage_roles == true {
    +  if $pl_manage_content == true {
         # create the role
     
         exec { "role_${name}":