Fixing init script
This commit is contained in:
parent
3102fb5fdb
commit
b0f9914eac
|
@ -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
|
Loading…
Reference in New Issue