Fixing init script

Esse commit está contido em:
Philippe Caseiro 2018-05-09 17:07:19 +02:00
commit b0f9914eac
1 arquivos alterados com 10 adições e 2 exclusões

Ver arquivo

@ -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