diff options
| -rw-r--r-- | manifests/init.pp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/manifests/init.pp b/manifests/init.pp index 182536e..950c2ab 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -413,8 +413,14 @@ class nodo::proxy inherits nodo::vserver {  class nodo::backup inherits nodo::vserver {    # Class for backup hosting nodes +  file { "/tmp/empty": +    ensure => absent, +  }  }  class nodo::test inherits nodo::web {    # Class for test nodes +  file { "/tmp/empty": +    ensure => absent, +  }  } | 
