diff options
Diffstat (limited to 'manifests/vhost')
-rw-r--r-- | manifests/vhost/redirect.pp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/manifests/vhost/redirect.pp b/manifests/vhost/redirect.pp index 64ebaec..7422629 100644 --- a/manifests/vhost/redirect.pp +++ b/manifests/vhost/redirect.pp @@ -10,15 +10,13 @@ # - true: enable ssl for this vhost # - force: enable ssl and redirect non-ssl to ssl # - only: enable ssl only -# - vhost_destination: where to put the vhost define apache::vhost::redirect( $ensure = present, $domain = 'absent', $domainalias = 'absent', $target_url, $server_admin = 'absent', - $ssl_mode = false, - $vhost_destination = 'absent' + $ssl_mode = false ){ # create vhost configuration file # we use the options field as the target_url @@ -31,7 +29,6 @@ define apache::vhost::redirect( allow_override => $allow_override, options => $target_url, ssl_mode => $ssl_mode, - vhost_destination => $vhost_destination, } } |