aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp1
-rw-r--r--manifests/utils.pp7
2 files changed, 8 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index e22edbb..826e208 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -509,6 +509,7 @@ class nodo::proxy inherits nodo::vserver {
class nodo::storage inherits nodo::vserver {
# Class for backup nodes
+ include utils::storage
}
class nodo::test inherits nodo::web {
diff --git a/manifests/utils.pp b/manifests/utils.pp
index e80d93a..681276b 100644
--- a/manifests/utils.pp
+++ b/manifests/utils.pp
@@ -11,3 +11,10 @@ class utils::server {
ensure => installed,
}
}
+
+# Common utilities for storage
+class utils::storage {
+ package { 'clamav':
+ ensure => installed,
+ }
+}