summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster/storeconfigs.pp
diff options
context:
space:
mode:
authorJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2010-05-12 12:00:37 -0400
committerJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2010-05-12 12:00:37 -0400
commit4b1787ecc126798dcbcf85d383b0489f56dd34bf (patch)
tree2429712ea1cead40e5ba37de2fbcd4ce19aba7e5 /manifests/puppetmaster/storeconfigs.pp
parentfaf3eed61c65f59fa7f7e99bf69d1a2f6c70d629 (diff)
storeconfigs: use new mysql::client::ruby class
Diffstat (limited to 'manifests/puppetmaster/storeconfigs.pp')
-rw-r--r--manifests/puppetmaster/storeconfigs.pp9
1 files changed, 3 insertions, 6 deletions
diff --git a/manifests/puppetmaster/storeconfigs.pp b/manifests/puppetmaster/storeconfigs.pp
index 1b6d759..a3b09bd 100644
--- a/manifests/puppetmaster/storeconfigs.pp
+++ b/manifests/puppetmaster/storeconfigs.pp
@@ -1,13 +1,10 @@
# This class sets up the necessary ActiveRecord bits
# so storeconfigs works.
+
class puppet::puppetmaster::storeconfigs {
+
include rails
include mysql::server
-
- case $operatingsystem {
- debian: { package { libmysql-ruby: ensure => present } }
-
- }
-
+ include mysql::client::ruby
}