78 lines
1.7 KiB
ObjectPascal
Raw Normal View History

# The keystone::db::mysql class implements mysql backend for keystone
#
2012-04-06 15:48:05 -07:00
# This class can be used to create tables, users and grant
# privilege for a mysql keystone database.
2012-04-06 15:48:05 -07:00
#
2012-10-31 12:33:09 -07:00
# == parameters
2012-04-06 15:48:05 -07:00
#
# [*password*]
# (Required) Password to connect to the database.
2012-04-06 15:48:05 -07:00
#
# [*dbname*]
# (Optional) Name of the database.
# Defaults to 'keystone'.
2012-04-06 15:48:05 -07:00
#
# [*user*]
# (Optional) User to connect to the database.
# Defaults to 'keystone'.
2012-04-06 15:48:05 -07:00
#
# [*host*]
# (Optional) The default source host user is allowed to connect from.
# Defaults to '127.0.0.1'
2012-04-06 15:48:05 -07:00
#
# [*allowed_hosts*]
# (Optional) Other hosts the user is allowed to connect from.
# Defaults to 'undef'.
2012-04-06 15:48:05 -07:00
#
# [*charset*]
# (Optional) The database charset.
# Defaults to 'utf8'
#
# [*collate*]
# (Optional) The database collate.
# Only used with mysql modules >= 2.2.
# Defaults to 'utf8_general_ci'
#
# === Deprecated Parameters
#
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',
$host = '127.0.0.1',
$charset = 'utf8',
$collate = 'utf8_general_ci',
$allowed_hosts = undef
) {
include ::keystone::deps
validate_string($password)
::openstacklib::db::mysql { 'keystone':
user => $user,
password_hash => mysql_password($password),
dbname => $dbname,
host => $host,
charset => $charset,
collate => $collate,
allowed_hosts => $allowed_hosts,
}
Anchor['keystone::db::begin']
~> Class['keystone::db::mysql']
~> Anchor['keystone::db::end']
}