Showing with 11 additions and 3 deletions.
  1. +8 −0 CHANGELOG.md
  2. +1 −1 REFERENCE.md
  3. +1 −1 manifests/init.pp
  4. +1 −1 metadata.json
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v2.1.0](https://github.com/puppetlabs/puppetlabs-pe_databases/tree/v2.1.0) (2021-07-13)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-pe_databases/compare/v2.0.0...v2.1.0)

### Added

- \(SUP-2545\) Disable table maintenance by default [\#83](https://github.com/puppetlabs/puppetlabs-pe_databases/pull/83) ([m0dular](https://github.com/m0dular))

## [v2.0.0](https://github.com/puppetlabs/puppetlabs-pe_databases/tree/v2.0.0) (2021-07-02)

[Full Changelog](https://github.com/puppetlabs/puppetlabs-pe_databases/compare/v1.2.0...v2.0.0)
Expand Down
2 changes: 1 addition & 1 deletion REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Data type: `Boolean`



Default value: ``true``
Default value: ``false``

##### <a name="install_dir"></a>`install_dir`

Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Manage the state of the maintenance tasks, i.e. systemd services and timers
Boolean $disable_maintenance = lookup('pe_databases::disable_maintenance', {'default_value' => false}),
Boolean $manage_postgresql_settings = true,
Boolean $manage_table_settings = true,
Boolean $manage_table_settings = false,
String $install_dir = '/opt/puppetlabs/pe_databases',
String $scripts_dir = "${install_dir}/scripts"
) {
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-pe_databases",
"version": "2.0.0",
"version": "2.1.0",
"author": "puppetlabs",
"summary": "A Puppet Module for Backing Up / Maintaining / Tuning Your Puppet Enterprise Databases",
"license": "Apache-2.0",
Expand Down