Skip to content

Commit 96a64a9

Browse files
committed
(MODULES-1096) Fix double quote / single quote issue in params.pp.
To follow style guide advice (http://docs.puppetlabs.com/guides/style_guide.html#quoting) and make puppet-lint happy, manifests should only use double quotes with strings that contain variables. This commit fixes the lone exception to this rule.
1 parent 3c2522d commit 96a64a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manifests/params.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
'RedHat': {
3333
case $::operatingsystem {
3434
'Fedora': {
35-
if is_integer($::operatingsystemrelease) and $::operatingsystemrelease >= 19 or $::operatingsystemrelease == "Rawhide" {
35+
if is_integer($::operatingsystemrelease) and $::operatingsystemrelease >= 19 or $::operatingsystemrelease == 'Rawhide' {
3636
$provider = 'mariadb'
3737
} else {
3838
$provider = 'mysql'

0 commit comments

Comments
 (0)