diff options
Diffstat (limited to 'manifests/puppetmaster/storeconfigs.pp')
-rw-r--r-- | manifests/puppetmaster/storeconfigs.pp | 9 |
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 } |