blob: 652d59154aeb7ec26bc34ba6e75d9964b8bea244 (
plain)
1
2
3
4
5
6
7
|
if [ $1 -ge 1 ]; then
if [ -x %{_sysconfdir}/init.d/mysql ] ; then
# only restart the server if it was alredy running
%{_sysconfdir}/init.d/mysql status > /dev/null 2>&1 && \
%{_sysconfdir}/init.d/mysql restart
fi
fi
|