diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-11-05 16:34:26 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-11-05 16:34:26 -0200 |
commit | d6ea12f3244c47a6520a89621d2daae4b0c37242 (patch) | |
tree | f528745f0df6ac636c3d704ec05f32d85c24688d /manifests | |
parent | e55c18fd5b2090ca1d684bfc67a45d9db138a4bb (diff) | |
download | puppet-apache-d6ea12f3244c47a6520a89621d2daae4b0c37242.tar.gz puppet-apache-d6ea12f3244c47a6520a89621d2daae4b0c37242.tar.bz2 |
Using correct apache package name
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 5 |
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": |