mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
b96340db55
- check for start/stop arguments in startup file - don't rip off --force option from mysql_install_db
19 lines
331 B
Bash
19 lines
331 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
if [ -x %%PREFIX%%/bin/safe_mysqld ]; then
|
|
%%PREFIX%%/bin/safe_mysqld --user=mysql > /dev/null & && echo -n ' mysqld'
|
|
fi
|
|
;;
|
|
stop)
|
|
/usr/bin/killall mysqld > /dev/null 2>&1 && echo -n ' mysqld'
|
|
;;
|
|
*)
|
|
echo ""
|
|
echo "Usage: `basename $0` { start | stop }"
|
|
echo ""
|
|
exit 1
|
|
;;
|
|
esac
|