summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandreas <andreas@immerda.ch>2008-01-28 13:25:24 +0000
committerandreas <andreas@immerda.ch>2008-01-28 13:25:24 +0000
commit94b2e97dc4e13ff91f4a81b5537d7ce0a4f25b42 (patch)
tree8a3b6a505d7685364c99c66d2044e932a7f272ab
parentd4a34c55ced55eaf6eda61a40759b1bab793b22e (diff)
conf files von den xens
-rw-r--r--manifests/init.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644
index 0000000..32afb50
--- /dev/null
+++ b/manifests/init.pp
@@ -0,0 +1,17 @@
+# modules/squid/manifests/init.pp - manage squid stuff
+# Copyright (C) 2007 admin@immerda.ch
+#
+
+# modules_dir { "squid": }
+
+class squid {
+ package { 'squid':
+ ensure => present,
+ category => $operatingsystem ? {
+ gentoo => 'net-proxy',
+ default => '',
+ }
+ }
+
+}
+