diff options
-rw-r--r-- | deployment/websites/manifests/static.pp | 2 | ||||
-rw-r--r-- | modules/buildsystem/manifests/mainnode.pp | 2 | ||||
-rw-r--r-- | modules/puppet/manifests/thin.pp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/deployment/websites/manifests/static.pp b/deployment/websites/manifests/static.pp index 41b4f332..749f72b0 100644 --- a/deployment/websites/manifests/static.pp +++ b/deployment/websites/manifests/static.pp @@ -2,7 +2,7 @@ class websites::static { include websites::base $vhostdir = "$websites::base::webdatadir/static.$::domain" - apache::vhost_other_app { "static.$::domain": + apache::vhost::other_app { "static.$::domain": vhost_file => 'websites/vhost_static.conf', } diff --git a/modules/buildsystem/manifests/mainnode.pp b/modules/buildsystem/manifests/mainnode.pp index 40b94f04..e795cf80 100644 --- a/modules/buildsystem/manifests/mainnode.pp +++ b/modules/buildsystem/manifests/mainnode.pp @@ -17,7 +17,7 @@ class buildsystem::mainnode { ssh::auth::server { [$sched_login, $build_login]: } $mirror_root = '/distrib/mirror' - apache::vhost_other_app { "repository.$::domain": + apache::vhost::other_app { "repository.$::domain": vhost_file => 'buildsystem/vhost_repository.conf', } diff --git a/modules/puppet/manifests/thin.pp b/modules/puppet/manifests/thin.pp index e885dd7f..0c6259e4 100644 --- a/modules/puppet/manifests/thin.pp +++ b/modules/puppet/manifests/thin.pp @@ -4,7 +4,7 @@ class puppet::thin { include apache::mod::ssl include apache::mod::proxy - apache::vhost_other_app { 'puppet_proxy': + apache::vhost::other_app { 'puppet_proxy': vhost_file => 'puppet/apache_proxy_vhost.conf', } |