]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Including mysql::server at database::instance
authorSilvio Rhatto <rhatto@riseup.net>
Tue, 22 Jan 2013 19:09:33 +0000 (17:09 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Tue, 22 Jan 2013 19:09:33 +0000 (17:09 -0200)
manifests/subsystems/database.pp

index 17500ff46374fb7b9cbd67479fa58f55893e7239..5df970018581a942f0556cc0dfd5d62e6c040a1c 100644 (file)
@@ -29,6 +29,8 @@ class database {
 
   # Database definitions
   define instance($password, $ensure = 'present', $privileges = 'all') {
+    include mysql::server
+
     mysql_database { "$name":
       ensure  => $ensure,
       require => Service['mysql'],