summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-10-09 03:48:44 +0200
committermh <mh@immerda.ch>2011-10-09 03:48:44 +0200
commit4ef0a3591b5c8ddf651a5f5d5ff0d292b186ceb7 (patch)
treec7737046a8ac2346bc2b0a71e0d80e37b24b2ecb /manifests/centos.pp
parentb11bb5a891e96fafa01a431db8e168a41948b88a (diff)
remove stupid cycle
Diffstat (limited to 'manifests/centos.pp')
-rw-r--r--manifests/centos.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/centos.pp b/manifests/centos.pp
index b3af7f6..ccbc079 100644
--- a/manifests/centos.pp
+++ b/manifests/centos.pp
@@ -43,12 +43,12 @@ class apache::centos inherits apache::package {
path => '/etc/httpd/conf/httpd.conf',
line => 'PidFile run/httpd.pid',
require => Package['apache'],
- notify=> Package['apache'];
+ notify=> Service['apache'];
'listen_httpd.conf':
path => '/etc/httpd/conf/httpd.conf',
line => 'Listen 80',
require => Package['apache'],
- notify=> Package['apache'];
+ notify=> Service['apache'];
}
apache::config::global{'00-listen.conf':
ensure => absent,