From dc55b9e430c4ed371750128af15d480627748f45 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 6 Nov 2009 18:10:16 -0200 Subject: Rollback from last change --- manifests/init.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'manifests') diff --git a/manifests/init.pp b/manifests/init.pp index a93b3bb..1c78723 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -127,14 +127,14 @@ class apache { # You can add a custom require (string) if the module depends on # packages that aren't part of the default apache2 package. Because of # the package dependencies, apache2 will automagically be included. - define module($ensure = 'present', $require = 'Package[apache2]') { + define module($ensure = 'present', $require = 'apache2') { case $ensure { - 'present' : { + 'present': { exec { "/usr/sbin/a2enmod $name": unless => "/bin/sh -c '[ -L ${apache2_mods}-enabled/${name}.load ] \ && [ ${apache2_mods}-enabled/${name}.load -ef ${apache2_mods}-available/${name}.load ]'", notify => Exec["force-reload-apache2"], - require => $require, + require => Package[$require], } } 'absent': { -- cgit v1.2.3