X-Git-Url: http://gitweb/?a=blobdiff_plain;f=mysql%2Fmysqld;h=8df06b24f1142dbc9bf7703e97fd263e503c51e7;hb=4fd01803e12b7190ed228cf536dd68dd5c0ea62a;hp=4775f33f00b097b179f2f075d95349e22a7ae882;hpb=825e3023e51a748f9bf49a6b4528ee2c07931c36;p=ports%2Fopt-arm.git diff --git a/mysql/mysqld b/mysql/mysqld index 4775f33..8df06b2 100644 --- a/mysql/mysqld +++ b/mysql/mysqld @@ -3,28 +3,34 @@ # /etc/rc.d/mysqld: start/stop mysqld daemon # +SSD=/sbin/start-stop-daemon +PROG=/usr/sbin/mysqld MYSQL_CFG=/etc/my.cnf - -MYSQL_PID=`sed -n 's/^pid-file[ \t]*=[ \t]*//p' $MYSQL_CFG` -MYSQL_USR=`sed -n 's/^user[ \t]*=[ \t]*//p' $MYSQL_CFG` +PID=/var/run/mysql/mysqld.pid +LOG=/var/log/mysqld.log case $1 in start) - touch $MYSQL_PID - chown $MYSQL_USR $MYSQL_PID - /usr/sbin/mysqld & + $SSD --start -bC --pidfile $PID --exec $PROG >> $LOG 2>&1 ;; stop) - killall -q /usr/sbin/mysqld - rm $MYSQL_PID + $SSD --stop --remove-pidfile --retry 10 --pidfile $PID ;; restart) $0 stop - sleep 2 $0 start ;; +status) + $SSD --status --pidfile $PID + case $? in + 0) echo "$PROG is running with pid $(cat $PID)" ;; + 1) echo "$PROG is not running but the pid file $PID exists" ;; + 3) echo "$PROG is not running" ;; + 4) echo "Unable to determine the program status" ;; + esac + ;; *) - echo "usage: $0 [start|stop|restart]" + echo "usage: $0 [start|stop|restart|status]" ;; esac