Skip to content

Commit 6542519

Browse files
committed
Merge pull request #991 from gibbsoft/master
Quoted params to versioncmp in mod/alias.pp to avoid type error
2 parents db0d240 + a4cbf79 commit 6542519

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

manifests/mod/alias.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class apache::mod::alias(
22
$apache_version = $apache::apache_version
33
) {
4-
$ver24 = versioncmp($apache_version, 2.4) >= 0
4+
$ver24 = versioncmp($apache_version, '2.4') >= 0
55

66
$icons_path = $::osfamily ? {
77
'debian' => '/usr/share/apache2/icons',

0 commit comments

Comments
 (0)