dev-db/mysql-init-scripts: Minor refinements to the 2.2 init scripts
authorBrian Evans <grknight@gentoo.org>
Mon, 24 Jul 2017 14:04:21 +0000 (10:04 -0400)
committerBrian Evans <grknight@gentoo.org>
Mon, 24 Jul 2017 14:04:21 +0000 (10:04 -0400)
Package-Manager: Portage-2.3.6, Repoman-2.3.3

dev-db/mysql-init-scripts/files/init.d-2.2
dev-db/mysql-init-scripts/files/init.d-s6-2.2

index f798052bb372b86fca31cce8b58c01e1e9256884..d217744de9c2f1af2f0be7bf95e7cb92f1e8eee2 100644 (file)
@@ -2,7 +2,11 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-extra_commands="checkconfig bootstrap_galera"
+extra_commands="checkconfig"
+extra_stopped_commands="boostrap_galera"
+
+description_checkconfig="Verify the server's configuration"
+description_boostrap_galera="Start a new Galera cluster with this server as the initial node"
 
 depend() {
        use net.lo
@@ -27,10 +31,6 @@ mysql_svcname() {
 stringContain() { [ -z "${2##*$1*}" ] && [ -z "$1" -o -n "$2" ]; }
 
 bootstrap_galera() {
-       if ! service_stopped ; then
-               eerror "The server cannot be running to perform this action"
-               return 1
-       fi
        MY_ARGS="--wsrep-new-cluster ${MY_ARGS}"
        mark_service_starting
        if start ; then
index 6e7bce3d9f1b85031fca685d8258b0b4d91a958b..427061aa9904fc724322c37a1fd8889eb56fa8e3 100644 (file)
@@ -25,13 +25,9 @@ mysql_svcname() {
 stringContain() { [ -z "${2##*$1*}" ] && [ -z "$1" -o -n "$2" ]; }
 
 bootstrap_galera() {
-       if ! service_stopped ; then
-               eerror "The server cannot be running to perform this action"
-               return 1
-       fi
        MY_ARGS="--wsrep-new-cluster ${MY_ARGS}"
        mark_service_starting
-       if start ; then
+       if start_pre && start ; then
                mark_service_started
                return 0
        else
@@ -41,7 +37,11 @@ bootstrap_galera() {
 }
 
 
-extra_commands="checkconfig boostrap_galera"
+extra_commands="checkconfig"
+extra_stopped_commands="boostrap_galera"
+
+description_checkconfig="Verify the server's configuration"
+description_boostrap_galera="Start a new Galera cluster with this server as the initial node"
 supervisor=s6
 name=$(mysql_svcname)
 s6_service_timeout_stop="$((1000*${STOP_TIMEOUT:-120}))"