summaryrefslogtreecommitdiffstats
path: root/recipes-support/mysql/files/mysqld.sh
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-support/mysql/files/mysqld.sh')
-rw-r--r--recipes-support/mysql/files/mysqld.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-support/mysql/files/mysqld.sh b/recipes-support/mysql/files/mysqld.sh
new file mode 100644
index 000000000..479ebdb25
--- /dev/null
+++ b/recipes-support/mysql/files/mysqld.sh
@@ -0,0 +1,24 @@
1# MySQL init script
2
3. /etc/default/rcS
4
5case "$1" in
6 start)
7 /usr/bin/mysqld_safe &
8 ;;
9 stop)
10 if test -f /var/lib/mysql/mysqld.pid ; then
11 PID=`cat /var/lib/mysql/mysqld.pid`
12 kill $PID
13 fi
14 ;;
15 restart)
16 $0 stop
17 $0 start
18 ;;
19 *)
20 echo "Usage: /etc/init.d/mysqld {start|stop|restart}"
21 ;;
22esac
23
24exit 0