Skip to content

Commit

Permalink
Merge pull request #991 from gibbsoft/master
Browse files Browse the repository at this point in the history
Quoted params to versioncmp in mod/alias.pp to avoid type error
  • Loading branch information
cmurphy committed Jan 22, 2015
2 parents db0d240 + a4cbf79 commit 6542519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/mod/alias.pp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class apache::mod::alias(
$apache_version = $apache::apache_version
) {
$ver24 = versioncmp($apache_version, 2.4) >= 0
$ver24 = versioncmp($apache_version, '2.4') >= 0

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

0 comments on commit 6542519

Please sign in to comment.