Merge "Install rsync package for galera"

This commit is contained in:
Jenkins 2017-06-11 16:01:33 +00:00 committed by Gerrit Code Review
commit b8a10fbc15
2 changed files with 15 additions and 0 deletions

View File

@ -100,6 +100,15 @@ class tripleo::profile::pacemaker::database::mysql (
}
}
# since we are configuring rsync for wsrep_sst_method, we ought to make sure
# it's installed. We only includ this at step 2 since puppet-rsync may be
# included later and also adds the package resource.
if $step == 2 {
if ! defined(Package['rsync']) {
package {'rsync':}
}
}
# remove_default_accounts parameter will execute some mysql commands
# to remove the default accounts created by MySQL package.
# We need MySQL running to run the commands successfully, so better to

View File

@ -0,0 +1,6 @@
---
fixes:
- The mysql pacemaker profile now makes sure that the
rsync package is installed since it configures
wsrep_sst_method for galera to use rsync. See
https://bugs.launchpad.net/tripleo/+bug/1693003