summaryrefslogtreecommitdiff
path: root/manifests/shadow.pp
diff options
context:
space:
mode:
authorMarcel Haerry <haerry@puzzle.ch>2010-12-23 10:57:35 +0100
committerMarcel Haerry <haerry@puzzle.ch>2010-12-23 10:57:35 +0100
commitbfcc19e628073a0f8e6646308399dfec5dbb188d (patch)
tree4da7cd07c30f2c729ea24bbd38ad09973ec6ff55 /manifests/shadow.pp
parente5b8e782a0b3c878c9a55efda242ef0a3949c922 (diff)
make shadow also working on debian
Diffstat (limited to 'manifests/shadow.pp')
-rw-r--r--manifests/shadow.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/shadow.pp b/manifests/shadow.pp
index 2fa6edc..81a7921 100644
--- a/manifests/shadow.pp
+++ b/manifests/shadow.pp
@@ -1,6 +1,6 @@
class ruby::shadow {
- require ::ruby
- package{'ruby-shadow':
- ensure => installed,
+ case $operatingsystem {
+ debian,ubuntu: { include ruby::shadow::debian }
+ default: { include ruby::shadow::base }
}
}