diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-11-08 18:28:03 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-11-08 18:28:03 -0200 |
commit | 6d9d88b99a52fb52f4c930bce03a74abf8e80a90 (patch) | |
tree | 2641b89f1ece45257900aa2c311481dba3e3727d /manifests | |
parent | 21a6ea7bfd92caa536a9c8b92e7e25832efd349f (diff) | |
download | puppet-apache-6d9d88b99a52fb52f4c930bce03a74abf8e80a90.tar.gz puppet-apache-6d9d88b99a52fb52f4c930bce03a74abf8e80a90.tar.bz2 |
Adding redirect_match
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 991a95e..c5b10f5 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -83,8 +83,8 @@ class apache { } define site($ensure = present, $docroot = false, $redirect = false, - $protocol = 'http', $server_alias = false, $use = false, - $ticket = false) { + $redirect_match = false, $protocol = 'http', + $server_alias = false, $use = false, $ticket = false) { file { "${apache2_sites}-available/$title": ensure => $ensure, content => template('apache/site.erb'), |