From 4f386295d9c6783dc1737c65f200bfea1aa06cfa Mon Sep 17 00:00:00 2001 From: Bryan Jen Date: Wed, 10 Jun 2015 16:15:11 -0700 Subject: [PATCH] fixes bug introduced by PR1133 --- manifests/default_mods.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/default_mods.pp b/manifests/default_mods.pp index 637b2bbe5..9e3c2c69a 100644 --- a/manifests/default_mods.pp +++ b/manifests/default_mods.pp @@ -12,7 +12,7 @@ if versioncmp($apache_version, '2.4') >= 0 { # Lets fork it # Do not try to load mod_systemd on RHEL/CentOS 6 SCL. - if ( !($::osfamily == 'redhat' and versioncmp($::operatingsystemrelease, '7.0') == -1) and !$::operatingsystem == 'Amazon' ) { + if ( !($::osfamily == 'redhat' and versioncmp($::operatingsystemrelease, '7.0') == -1) and !($::operatingsystem == 'Amazon') ) { ::apache::mod { 'systemd': } } ::apache::mod { 'unixd': }