diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-05-18 13:55:53 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-05-18 13:55:53 -0300 |
commit | 45a5dc053f67b0b881c9dd0a5bbd20e862b3be1c (patch) | |
tree | e5ee082f099fb722ef1733fd964ae5e295a80950 /manifests | |
parent | 3f2e3ae9e2135f6b42e445020ad68e32e9d3d1b3 (diff) | |
download | puppet-apache-45a5dc053f67b0b881c9dd0a5bbd20e862b3be1c.tar.gz puppet-apache-45a5dc053f67b0b881c9dd0a5bbd20e862b3be1c.tar.bz2 |
Adding support for canonical hostnames
Diffstat (limited to 'manifests')
-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 96bd9f8..6b7b382 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -190,7 +190,8 @@ class apache { $mpm = true, $mpm_user = '', $mpm_group = '', $password = '*', $comment = '', $sshkey = absent, $groups = '', $shell = '/bin/false', $manage_user = true, - $ssl = false, $listen = '*', $https_redirect = false) { + $ssl = false, $listen = '*', $https_redirect = false, + $canonical = false) { $vhost = $filename ? { '' => "$title", |