X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=cirros-testvm%2Fsrc-cirros%2Fbuildroot-2015.05%2Fpackage%2Fmysql%2FS97mysqld;fp=cirros-testvm%2Fsrc-cirros%2Fbuildroot-2015.05%2Fpackage%2Fmysql%2FS97mysqld;h=6f25403b80c10b655fb9fa64e51d8e90fb5ac6fe;hb=b0a0f15dfaa205161a7fcb20cf1b8cd4948c2ef3;hp=0000000000000000000000000000000000000000;hpb=c6ac3cd55ee2da956195eee393b0882105dfad4e;p=packages%2Ftrusty%2Fcirros-testvm.git diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/package/mysql/S97mysqld b/cirros-testvm/src-cirros/buildroot-2015.05/package/mysql/S97mysqld new file mode 100644 index 0000000..6f25403 --- /dev/null +++ b/cirros-testvm/src-cirros/buildroot-2015.05/package/mysql/S97mysqld @@ -0,0 +1,30 @@ +#!/bin/sh + +case "$1" in + start) + if [ ! -d /var/mysql/mysql ] ; then + echo "Creating MySQL system tables..." + mysql_install_db --user=mysql --ldata=/var/mysql + fi + + # We don't use start-stop-daemon because mysqld has + # its own wrapper script. + echo -n "Starting mysql..." + /usr/bin/mysqld_safe --pid-file=/var/run/mysqld.pid & + echo "done." + ;; + stop) + echo -n "Stopping mysql..." + if test -f /var/run/mysqld.pid ; then + kill `cat /var/run/mysqld.pid` + fi + echo "done." + ;; + restart) + $0 stop + $0 start + ;; + *) + echo "Usage: /etc/init.d/mysqld {start|stop|restart}" + ;; +esac