summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2009-11-05 16:34:26 -0200
committerSilvio Rhatto <rhatto@riseup.net>2009-11-05 16:34:26 -0200
commitd6ea12f3244c47a6520a89621d2daae4b0c37242 (patch)
treef528745f0df6ac636c3d704ec05f32d85c24688d /manifests
parente55c18fd5b2090ca1d684bfc67a45d9db138a4bb (diff)
downloadpuppet-apache-d6ea12f3244c47a6520a89621d2daae4b0c37242.tar.gz
puppet-apache-d6ea12f3244c47a6520a89621d2daae4b0c37242.tar.bz2
Using correct apache package name
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp5
1 files changed, 4 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 227af4d..68d7918 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -24,7 +24,10 @@
class apache {
- package { "apache": ensure => installed, }
+ package { "apache":
+ name => "apache2",
+ ensure => installed,
+ }
# TODO: enable mod_macro
package { "mod_macro":