commit 29bced96bdf2b64012a2c4ed2da2466dc4952fd0 Author: Takashi Kajinami Date: Fri Sep 25 23:46:28 2020 +0900 Replace deprecated openstacklib::db::mysql::password_hash Since [1] was merged into puppet-openstacklib, the password_hash parameter has been deprecated. Now hash value is generated in puppet-openstacklib layer, and a plain password should be passed via the password parameter instead. [1] e4b68e9ad62bc55f9d941874bc3af97c01e4bc61 Change-Id: Ia3455e90a40f35a378f8643fd9c8d4d251b44141 diff --git a/manifests/profile/base/database/mysql/user.pp b/manifests/profile/base/database/mysql/user.pp index e125568..50b5434 100644 --- a/manifests/profile/base/database/mysql/user.pp +++ b/manifests/profile/base/database/mysql/user.pp @@ -52,7 +52,7 @@ define tripleo::profile::base::database::mysql::user ( ::openstacklib::db::mysql { $title : user => $user, - password_hash => mysql::password($password), + password => $password, dbname => $dbname, host => $host, charset => $charset,