76 lines
2.0 KiB
ObjectPascal
Raw Normal View History

#
# implements mysql backend for keystone
#
2012-04-06 15:48:05 -07:00
# This class can be used to create tables, users and grant
# privelege for a mysql keystone database.
#
2012-10-31 12:33:09 -07:00
# == parameters
2012-04-06 15:48:05 -07:00
#
# [password] Password that will be used for the keystone db user.
# Optional. Defaults to: 'keystone_default_password'
#
# [dbname] Name of keystone database. Optional. Defaults to keystone.
#
# [user] Name of keystone user. Optional. Defaults to keystone_admin.
#
# [host] Host where user should be allowed all priveleges for database.
# Optional. Defaults to 127.0.0.1.
#
# [allowed_hosts] Hosts allowed to use the database
2012-04-06 15:48:05 -07:00
#
# == Dependencies
# Class['mysql::server']
#
# == Examples
# == Authors
#
# Dan Bode dan@puppetlabs.com
#
# == Copyright
#
# Copyright 2012 Puppetlabs Inc, unless otherwise noted.
#
class keystone::db::mysql(
$password,
$dbname = 'keystone',
$user = 'keystone_admin',
$host = '127.0.0.1',
2012-05-16 09:31:37 -05:00
$charset = 'latin1',
$allowed_hosts = undef
) {
Class['keystone::db::mysql'] -> Exec<| title == 'keystone-manage db_sync' |>
Class['keystone::db::mysql'] -> Service<| title == 'keystone' |>
Mysql::Db[$dbname] ~> Exec<| title == 'keystone-manage db_sync' |>
require mysql::python
mysql::db { $dbname:
user => $user,
password => $password,
host => $host,
2012-04-06 15:48:05 -07:00
# TODO does it make sense to support other charsets?
2012-05-16 09:31:37 -05:00
charset => $charset,
require => Class['mysql::config'],
}
# Check allowed_hosts to avoid duplicate resource declarations
if is_array($allowed_hosts) and delete($allowed_hosts,$host) != [] {
$real_allowed_hosts = delete($allowed_hosts,$host)
} elsif is_string($allowed_hosts) and ($allowed_hosts != $host) {
$real_allowed_hosts = $allowed_hosts
}
if $real_allowed_hosts {
keystone::db::mysql::host_access { $real_allowed_hosts:
user => $user,
password => $password,
database => $dbname,
}
Keystone::Db::Mysql::Host_access[$allowed_hosts] -> Exec<| title == 'keystone-manage db_sync' |>
}
}