aboutsummaryrefslogtreecommitdiffstats
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, 0 insertions, 24 deletions
diff --git a/recipes-support/mysql/files/mysqld.sh b/recipes-support/mysql/files/mysqld.sh
deleted file mode 100644
index 479ebdb257..0000000000
--- a/recipes-support/mysql/files/mysqld.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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