- fix the service name ( as i cannot name it apache, i need to use a alias )
Modified: puppet/modules/apache/manifests/init.pp =================================================================== --- puppet/modules/apache/manifests/init.pp 2010-11-04 17:14:35 UTC (rev 95) +++ puppet/modules/apache/manifests/init.pp 2010-11-04 17:42:21 UTC (rev 96) @@ -5,10 +5,10 @@ ensure => installed } - service { apache: + service { httpd: + alias => apache, ensure => running, subscribe => [ Package['apache-mpm-prefork'] ], - path => "/etc/init.d/httpd" } }