Fixing init script

Este commit está contenido en:
Philippe Caseiro 2018-05-09 17:07:19 +02:00
padre 3102fb5fdb
commit b0f9914eac
Se han modificado 1 ficheros con 10 adiciones y 2 borrados

Ver fichero

@ -20,6 +20,7 @@ logfile="${logdir}/maria-init.log"
if [[ ${ROLE} == "Leader" ]]
then
service mysql start
${passwd} ${PASSWORD}
# Run secure installation script
@ -32,8 +33,15 @@ y
y
y
__EOF__
touch ${INITDONE}
exit ${?}
if [[ ${?} -eq 0 ]]
then
service mysql stop
touch ${INITDONE}
exit ${?}
else
service mysql stop
exit ${?}
fi
else
exit 0
fi