summaryrefslogtreecommitdiff
path: root/manifests/gentoo.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-12-27 15:54:45 +0000
committermh <mh@immerda.ch>2008-12-27 15:54:45 +0000
commit26fb5d12d5da80a8057aeaecaa65e266964d8478 (patch)
treec952686107449f61d5905f3f1c934b829c45c66c /manifests/gentoo.pp
parent81d2c0ba518dca2861e685edd7af657a0726340d (diff)
factored classes out in their own files
Diffstat (limited to 'manifests/gentoo.pp')
-rw-r--r--manifests/gentoo.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/gentoo.pp b/manifests/gentoo.pp
new file mode 100644
index 0000000..59d299f
--- /dev/null
+++ b/manifests/gentoo.pp
@@ -0,0 +1,12 @@
+class puppet::gentoo inherits puppet::linux {
+ Package[puppet]{
+ category => 'app-admin',
+ }
+ Package[facter]{
+ category => 'dev-ruby',
+ }
+ # as we use sometimes the init script to test
+ Service[puppet]{
+ hasstatus => false,
+ }
+}