aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-01-22 15:30:53 -0200
committerSilvio Rhatto <rhatto@riseup.net>2010-01-22 15:30:53 -0200
commitdc894e3b94be5697c33c0ef1db168517a44a109e (patch)
treec73858563348c42475c6d8f4d06e095155c2b003 /manifests/utils.pp
parent98f4d52829cd41f0b738a655afbbf57c9831b288 (diff)
downloadpuppet-nodo-dc894e3b94be5697c33c0ef1db168517a44a109e.tar.gz
puppet-nodo-dc894e3b94be5697c33c0ef1db168517a44a109e.tar.bz2
Adding utils and utils::server
Diffstat (limited to 'manifests/utils.pp')
-rw-r--r--manifests/utils.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/utils.pp b/manifests/utils.pp
new file mode 100644
index 0000000..2ec62b1
--- /dev/null
+++ b/manifests/utils.pp
@@ -0,0 +1,13 @@
+# Common utilities
+class utils {
+ package { [ 'screen', 'less', 'bzip2', 'openssl', 'lynx', 'wget' ]:
+ ensure => installed,
+ }
+}
+
+# Common utilities for servers
+class utils::server {
+ package { 'nload':
+ ensure => installed,
+ }
+}