diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-01-07 22:14:58 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-01-07 22:14:58 -0200 |
commit | 2c7d5d69ba3d84b6c36c4acad83a717e4ecd58e3 (patch) | |
tree | 5406f1e1a8f85cda4f8183f755d7f82b0d4bb8b0 | |
parent | 6b80c659a0ec2fd8a97a0b2ce9bf9a2dec32f88c (diff) | |
download | puppet-git-2c7d5d69ba3d84b6c36c4acad83a717e4ecd58e3.tar.gz puppet-git-2c7d5d69ba3d84b6c36c4acad83a717e4ecd58e3.tar.bz2 |
Minor fix
-rw-r--r-- | manifests/gitweb.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/gitweb.pp b/manifests/gitweb.pp index 81d19c9..3daa92f 100644 --- a/manifests/gitweb.pp +++ b/manifests/gitweb.pp @@ -5,7 +5,7 @@ class gitweb inherits gitosis { package { gitweb: ensure => installed } case $apache_use_domain { - '' { $apache_use_domain = $domain } + '': { $apache_use_domain = $domain } } # gitweb config file |