Skip to content

Commit 6eec184

Browse files
committed
merge_options: Switch default false->true
This was introduced a long time ago: 8adbf88 I think it's time to finally flip the default value and make a major release.
1 parent a3d28a1 commit 6eec184

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

manifests/config.pp

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
} else {
2626
$_global_options = $global_options
2727
$_defaults_options = $defaults_options
28-
warning("${module_name}: The \$merge_options parameter will default to true in the next major release. Please review the documentation regarding the implications.") # lint:ignore:140chars
2928
}
3029

3130
if defined(Class['haproxy']) {

manifests/params.pp

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
# extended by changing package names and configuration file paths.
77
#
88
class haproxy::params {
9-
# XXX: This will change to true in the next major release
10-
$merge_options = false
9+
$merge_options = true
1110

1211
$service_options = "ENABLED=1\n" # Only used by Debian.
1312
$sysconfig_options = 'OPTIONS=""' #Only used by Redhat/CentOS etc

0 commit comments

Comments
 (0)