From 1a24c428f1550c0d367e1d866a56cc685d576957 Mon Sep 17 00:00:00 2001 From: "Mathias J. Hennig" Date: Tue, 19 Aug 2014 08:29:41 +0200 Subject: [PATCH] Allow some bacula::params::validate parameter values to be undef(ined) --- manifests/params/validate.pp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifests/params/validate.pp b/manifests/params/validate.pp index 9578b8e..f2e6bb1 100644 --- a/manifests/params/validate.pp +++ b/manifests/params/validate.pp @@ -37,17 +37,17 @@ $is_director = '', $is_storage = '', $logwatch_enabled = '', - $mail_to = '', - $mail_to_daemon = '', - $mail_to_on_error = '', - $mail_to_operator = '', + $mail_to = undef, + $mail_to_daemon = undef, + $mail_to_on_error = undef, + $mail_to_operator = undef, $manage_bat = '', $manage_config_dir = '', $manage_console = '', $manage_db = '', $manage_db_tables = '', $manage_logwatch = '', - $plugin_dir = '', + $plugin_dir = undef, $storage_default_mount = '', $storage_server = '', $tls_allowed_cn = '',