meta-openembedded/recipes-support/mysql/files/mysqld.sh
Koen Kooi ef3de09a6b mysql5: import from OE
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-01-03 12:02:34 +01:00

25 lines
321 B
Bash

# MySQL init script
. /etc/default/rcS
case "$1" in
start)
/usr/bin/mysqld_safe &
;;
stop)
if test -f /var/lib/mysql/mysqld.pid ; then
PID=`cat /var/lib/mysql/mysqld.pid`
kill $PID
fi
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: /etc/init.d/mysqld {start|stop|restart}"
;;
esac
exit 0