Merge pull request #178 from wolfspyre/master
python_package_name parameter missing
This commit is contained in:
commit
2fafc3301c
1 changed files with 8 additions and 5 deletions
|
@ -28,20 +28,20 @@
|
|||
#
|
||||
# [*old_root_password*] - Previous root user password,
|
||||
#
|
||||
# [*package_name*] - legacy parameter used to specify the client package. Should not be used going forward
|
||||
#
|
||||
# [*package_ensure*] - ensure value for packages.
|
||||
#
|
||||
# [*package_name*] - legacy parameter used to specify the client package. Should not be used going forward
|
||||
#
|
||||
# [*php_package_name*] - The name of the phpmysql package to install
|
||||
#
|
||||
# [*pidfile*] - The location mysql will expect the pidfile to be, and will put it when starting the service.
|
||||
#
|
||||
# [*port*] - The port mysql listens on
|
||||
#
|
||||
# [*python_package_name*] - The name of the python mysql package to install
|
||||
#
|
||||
# [*purge_conf_dir*] - Value fed to recurse and purge parameters of the /etc/mysql/conf.d resource
|
||||
#
|
||||
# [*python_package_name*] - The name of the python mysql package to install
|
||||
#
|
||||
# [*restart*] - Whether to restart mysqld (true/false)
|
||||
#
|
||||
# [*root_group*] - Use specified group for root-owned files
|
||||
|
@ -69,6 +69,8 @@
|
|||
#
|
||||
# [*ssl_cert*] - The location of the SSL Certificate to use
|
||||
#
|
||||
# [*ssl_key*] - The SSL key to use
|
||||
#
|
||||
# Actions:
|
||||
#
|
||||
# Requires:
|
||||
|
@ -88,12 +90,13 @@ class mysql(
|
|||
$log_error = $mysql::params::log_error,
|
||||
$manage_service = $mysql::params::manage_service,
|
||||
$old_root_password = $mysql::params::old_root_password,
|
||||
$package_name = undef,
|
||||
$package_ensure = $mysql::params::package_ensure,
|
||||
$package_name = undef,
|
||||
$php_package_name = $mysql::params::php_package_name,
|
||||
$pidfile = $mysql::params::pidfile,
|
||||
$port = $mysql::params::port,
|
||||
$purge_conf_dir = $mysql::params::purge_conf_dir,
|
||||
$python_package_name = $mysql::params::python_package_name,
|
||||
$restart = $mysql::params::restart,
|
||||
$root_group = $mysql::params::root_group,
|
||||
$root_password = $mysql::params::root_password,
|
||||
|
|
Loading…
Reference in a new issue