--- puppet/modules/apache/manifests/base.pp 2014/04/27 11:59:57 3458 +++ puppet/modules/apache/manifests/base.pp 2014/04/27 12:05:51 3459 @@ -11,8 +11,11 @@ alias => 'apache-server', } - package { $apache::var::pkg_conf: } - + # only needed on mga1 and mga2 + if ($::lsbdistrelease == '1') or ($::lsbdistrelease == '2') { + package { $apache::var::pkg_conf: } + } + service { 'httpd': alias => 'apache', subscribe => [ Package['apache-server'] ],