summaryrefslogtreecommitdiff
path: root/manifests/vhost/redirect.pp
diff options
context:
space:
mode:
authorng <ng@acabyte.ath.cx>2009-08-17 19:33:28 +0200
committerng <ng@acabyte.ath.cx>2009-08-17 19:33:28 +0200
commitfa7518388cb38b665747dc4462e67dfff8592eae (patch)
treed9324a151726fa12dbcb498ed1c6ca535cfe3182 /manifests/vhost/redirect.pp
parentdf8ecc11ede7c04d9b0ced49fb7785ceb8d281cc (diff)
remove obsolote parameter
Diffstat (limited to 'manifests/vhost/redirect.pp')
-rw-r--r--manifests/vhost/redirect.pp5
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,
}
}