diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-10-09 12:28:24 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-10-09 12:28:24 -0300 |
commit | 7709344579f694e4faa54abc4903b35482c8db47 (patch) | |
tree | c8c838682715f890b5a57e5efbcea3725e1c55cb | |
parent | 9023b5e6bdfa4f337f6b396b5efa9c7e3872f2a0 (diff) | |
download | puppet-apache-7709344579f694e4faa54abc4903b35482c8db47.tar.gz puppet-apache-7709344579f694e4faa54abc4903b35482c8db47.tar.bz2 |
Expression fix
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 3eb5ee2..a1391e3 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -126,7 +126,7 @@ class apache { default => $group, } - if $mpm == true && $user != 'root' { + if $mpm == true and $user != 'root' { if !defined(User["$user"]) { user::manage { "$user": tag => "virtual", |