blob: d670cf5d4725fb12eab9e5fc8d563981bf0c17ea (
plain)
1
2
3
4
5
6
7
8
9
|
class bcd::web {
include bcd::base
$location = "${bcd::home}/public_html"
apache::vhost::base { "bcd.${::domain}":
location => $location,
content => template('bcd/vhost_bcd.conf'),
}
}
|