diff options
author | Nirbhay Choubey <nirbhay@skysql.com> | 2014-02-14 17:03:44 -0500 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@skysql.com> | 2014-02-14 17:03:44 -0500 |
commit | e6a7a3804d05570d061c05756f3262dab364ce02 (patch) | |
tree | c5293b9ffe7baa9ce42b96d98fd158910501ad5b /scripts/mysqld_safe.sh | |
parent | 9564537cb1a4bfeabd073705fa9359e98fb69145 (diff) | |
download | mariadb-git-e6a7a3804d05570d061c05756f3262dab364ce02.tar.gz |
* mysqld_safe could not start server as it failedmariadb-galera-10.0.7
trying to perform wsrep position recovery.
Fixed by correcting the erroneous mysqld command
by properly quoting it.
* Merged the changes made to Ubuntu rules in previous
revision to Debian rules.
Diffstat (limited to 'scripts/mysqld_safe.sh')
-rw-r--r-- | scripts/mysqld_safe.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysqld_safe.sh b/scripts/mysqld_safe.sh index a76e821df48..31bbfe264ec 100644 --- a/scripts/mysqld_safe.sh +++ b/scripts/mysqld_safe.sh @@ -233,7 +233,7 @@ wsrep_recover_position() { log_notice "WSREP: Running position recovery with --log_error=$wr_logfile" - eval_log_error $mysqld_cmd --log_error=$wr_logfile --wsrep-recover + eval_log_error "$mysqld_cmd --log_error=$wr_logfile --wsrep-recover" local rp="$(grep 'WSREP: Recovered position:' $wr_logfile)" if [ -z "$rp" ]; then |