summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-02-08 14:57:17 +0000
committermh <mh@immerda.ch>2008-02-08 14:57:17 +0000
commit730ded7fc14e6e38cc4b9b07b7c32816ee7cfde0 (patch)
tree67d5630f1be62c42a3aa3a837980c4e48e6a6bd1 /manifests/init.pp
parent0526a4edb25f5b985cfcd921b6a5cd1e70ee6d3a (diff)
fixed typo
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index e3a5e00..2251c6e 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -4,19 +4,19 @@
class apache {
package { 'apache':
- name => 'apache'
+ name => 'apache',
ensure => present,
}
service { apache:
- name => 'apache2'
+ name => 'apache2',
enable => true,
ensure => running,
require => Package[apache],
}
file { 'default_apache_index':
- path => '/var/www/localhost/index.html'
+ path => '/var/www/localhost/index.html',
ensure => file,
owner => 'root',
group => 0,