diff --git a/doc/puppet_classes/puppet_cd_3A_3Aparams.html b/doc/puppet_classes/puppet_cd_3A_3Aparams.html index f36994c..c7f666c 100644 --- a/doc/puppet_classes/puppet_cd_3A_3Aparams.html +++ b/doc/puppet_classes/puppet_cd_3A_3Aparams.html @@ -994,6 +994,24 @@ +
  • + + pt_soft_write_failure + + + (Boolean) + + + (defaults to: false) + + + — +
    +

    whether to allow soft_write_failure

    +
    + +
  • +
  • pt_puppetdb_pkg @@ -1018,7 +1036,6 @@
     
     
    -58
     59
     60
     61
    @@ -1131,10 +1148,12 @@
     168
     169
     170
    -171
    +171 +172 +173 -
    # File 'manifests/params.pp', line 58
    +        
    # File 'manifests/params.pp', line 59
     
     class puppet_cd::params (
     
    @@ -1191,6 +1210,7 @@ class puppet_cd::params (
     
     # puppetdb
       String $pt_ssl_port               = '8081',
    +  Boolean $pt_soft_write_failure    = false,
     
     # r10k
       Boolean $pt_use_r10k              = false,
    diff --git a/manifests/params.pp b/manifests/params.pp
    index 26f9bd8..503c4f2 100644
    --- a/manifests/params.pp
    +++ b/manifests/params.pp
    @@ -54,6 +54,7 @@
     # @param [Boolean] pt_manage_user whether to manage the puppet user
     # @param [String] pt_r10k_webhook_port the port for the webhook listener
     # @param [String] pt_ssl_port the port for the puppetdb ssl port
    +# @param [Boolean] pt_soft_write_failure whether to allow soft_write_failure
     ###############################################################################
     class puppet_cd::params (
     
    @@ -110,6 +111,7 @@ class puppet_cd::params (
     
     # puppetdb
       String $pt_ssl_port               = '8081',
    +  Boolean $pt_soft_write_failure    = false,
     
     # r10k
       Boolean $pt_use_r10k              = false,