mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-14 04:52:59 +02:00
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@387 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
79 lines
1.3 KiB
Bash
79 lines
1.3 KiB
Bash
#!/bin/sh
|
|
# Begin $rc_base/init.d/mysql
|
|
|
|
# Based on sysklogd script from LFS-3.1 and earlier.
|
|
# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
|
|
|
|
#$LastChangedBy: bdubbs $
|
|
#$Date: 2005-08-01 14:29:19 -0500 (Mon, 01 Aug 2005) $
|
|
|
|
. /etc/sysconfig/rc
|
|
. $rc_functions
|
|
|
|
PIDFILE=/srv/mysql/`/bin/hostname`.pid
|
|
KILLDELAY=20
|
|
|
|
case "$1" in
|
|
start)
|
|
boot_mesg -n "Starting MySQL daemon..."
|
|
failure=0
|
|
if [ -f "$PIDFILE" ]
|
|
then
|
|
if /bin/ps p `cat $PIDFILE` | grep mysqld >/dev/null
|
|
then
|
|
boot_mesg "mysqld already running!" ${WARNING}
|
|
echo_warning
|
|
exit 0
|
|
else
|
|
rm -f "$PIDFILE"
|
|
if [ -f "$PIDFILE" ]
|
|
then
|
|
failure=1
|
|
fi
|
|
fi
|
|
fi
|
|
if [ "$failure" = "1" ]
|
|
then
|
|
echo ""
|
|
echo_failure
|
|
else
|
|
echo ""
|
|
/usr/bin/mysqld_safe --user=mysql 2>&1 >/dev/null &
|
|
evaluate_retval
|
|
fi
|
|
;;
|
|
|
|
stop)
|
|
boot_mesg -n "Stopping MySQL daemon..."
|
|
if [ -e "$PIDFILE" ]
|
|
then
|
|
echo ""
|
|
killproc -p ${PIDFILE} /usr/bin/mysqld_safe
|
|
else
|
|
boot_mesg "mysqld not running!" ${WARNING}
|
|
echo_warning
|
|
if [ -e "$PIDFILE" ]
|
|
then
|
|
rm -f $PIDFILE
|
|
fi
|
|
fi
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
|
|
status)
|
|
statusproc /usr/sbin/mysqld
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|status}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# End $rc_base/init.d/mysql
|