diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-03-24 15:52:54 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-03-24 15:52:54 -0300 |
commit | adc3ab327f85f7d9c583d8b79b2cac22345c148f (patch) | |
tree | 9f595d4ef2ca0a8181459400a84a2ada65bf2e7c /manifests | |
parent | 5ad476c8845ae3b118fdade1687a3b89c84f13ce (diff) | |
download | puppet-nodo-adc3ab327f85f7d9c583d8b79b2cac22345c148f.tar.gz puppet-nodo-adc3ab327f85f7d9c583d8b79b2cac22345c148f.tar.bz2 |
Virtual module autoloading
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/base/host.pp | 2 | ||||
-rw-r--r-- | manifests/vserver/instance.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/base/host.pp b/manifests/base/host.pp index 07c2d5b..799fe20 100644 --- a/manifests/base/host.pp +++ b/manifests/base/host.pp @@ -19,7 +19,7 @@ class nodo::base::host { $vserver = hiera('nodo::host::use_vserver', True) if $vserver == true { - class { 'vserver::host': + class { 'virtual::vserver::host': vdirbase => "/var/vservers", } } diff --git a/manifests/vserver/instance.pp b/manifests/vserver/instance.pp index 6db61e4..2003861 100644 --- a/manifests/vserver/instance.pp +++ b/manifests/vserver/instance.pp @@ -47,7 +47,7 @@ define nodo::vserver::instance( $dev = hiera('nodo::vserver::interface', 'eth0') - vserver { $name: + virtual::vserver { $name: ensure => $ensure, context => "$context", mark => 'default', |