diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-11-08 13:26:31 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-11-08 13:26:31 -0200 |
commit | 540c717433f655efad2a5fcb186fc03a680768a8 (patch) | |
tree | 5f0d48f869b3d71e720b8faafaedaa97af64d640 | |
parent | 0bcb3aae2bed161823d7488c91b559a01304d7a5 (diff) | |
download | puppet-apache-540c717433f655efad2a5fcb186fc03a680768a8.tar.gz puppet-apache-540c717433f655efad2a5fcb186fc03a680768a8.tar.bz2 |
Adding 'ticket' parameter
-rw-r--r-- | manifests/init.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 3c6bcb5..0a72f80 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -75,7 +75,8 @@ class apache { } define site($ensure = present, $docroot = false, $redirect = false, - $protocol = 'http', $server_alias = false, $use = false) { + $protocol = 'http', $server_alias = false, $use = false, + $ticket = false) { file { "${apache2_sites}-available/$title": ensure => $ensure, content => template('apache/site.erb'), |