dev/provisioning/modules/mysql/examples/mysql_database.pp
author ymh <ymh.work@gmail.com>
Thu, 06 Oct 2016 11:14:32 +0200
changeset 322 084aae09edf4
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
correction on importRDF documents + evolution theme controller

class { 'mysql::server':
  root_password => 'password'
}
mysql::db{ ['test1', 'test2', 'test3']:
  ensure  => present,
  charset => 'utf8',
  require => Class['mysql::server'],
}
mysql::db{ 'test4':
  ensure  => present,
  charset => 'latin1',
}
mysql::db{ 'test5':
  ensure  => present,
  charset => 'binary',
  collate => 'binary',
}