summaryrefslogtreecommitdiff
path: root/manifests/base.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/base.pp')
-rw-r--r--manifests/base.pp21
1 files changed, 9 insertions, 12 deletions
diff --git a/manifests/base.pp b/manifests/base.pp
index 5b13cac..8029e73 100644
--- a/manifests/base.pp
+++ b/manifests/base.pp
@@ -55,20 +55,17 @@ class apache::base {
owner => root,
group => 0,
mode => '0644';
- }
- anchor{'apache::basic_dirs::ready':
- require => File['vhosts_dir','config_dir','include_dir','modules_dir','htpasswd_dir','web_dir','default_apache_index']
- }
+ } -> anchor{'apache::basic_dirs::ready': }
- apache::config::include{ 'defaults.inc': }
- apache::config::global{ 'git.conf': }
- if !$apache::no_default_site {
- apache::vhost::file { '0-default': }
- }
+ apache::config::include{ 'defaults.inc': }
+ apache::config::global{ 'git.conf': }
+ if !$apache::no_default_site {
+ apache::vhost::file { '0-default': }
+ }
service{'apache':
- ensure => running,
- name => 'apache2',
- enable => true,
+ ensure => running,
+ name => 'apache2',
+ enable => true,
}
}