From 89c0f4c19b87a8595392cfed82d8607c3a8636b2 Mon Sep 17 00:00:00 2001 From: Adrian Date: Mon, 12 Jul 2021 17:30:24 -0700 Subject: [PATCH] Disable table maintenance by default Prior to this commit, the default behavior was to manage various postgresql settings such as autovacuum frequency. However, this is not possible during a PE upgrade because postgres is down. --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index d2958d3..8b84305 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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" ) {