diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-01-27 12:33:06 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-01-28 09:12:52 +0000 |
commit | 149ee68a768a9199e15211714ad43072597684bd (patch) | |
tree | 2eff60ba0db44559bcbcf3f29c96b957451b88f1 /unmaintained/mysql/mysql.initd | |
parent | 926c90d464a607b5d7566361f0b6b104371733bc (diff) | |
download | aports-149ee68a768a9199e15211714ad43072597684bd.tar.bz2 aports-149ee68a768a9199e15211714ad43072597684bd.tar.xz |
unmaintaned/mysql: moved from main
It has been replaced by mariadb
Diffstat (limited to 'unmaintained/mysql/mysql.initd')
-rw-r--r-- | unmaintained/mysql/mysql.initd | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/unmaintained/mysql/mysql.initd b/unmaintained/mysql/mysql.initd new file mode 100644 index 0000000000..27632856cb --- /dev/null +++ b/unmaintained/mysql/mysql.initd @@ -0,0 +1,58 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/mysql.init,v 1.7 2004/07/14 21:41:15 agriffis Exp $ + +extra_stopped_commands="setup" +pidfile=/var/run/mysqld/mysqld.pid + +depend() { + need net + after firewall + use dns +} + +setup() { + ebegin "Creating a new MySQL database" + mysql_install_db --user=mysql --rpm + eend $? +} + +checkconfig() { + if [ ! -f /etc/mysql/my.cnf ] ; then + eerror "No /etc/mysql/my.cnf file exists!" + fi + + dir=`my_print_defaults mysqld | grep -- --datadir | sed -e "s|^.*=\(.*\)|\1|"` + + dir=${dir:-/var/lib/mysql} + [ -d ${dir}/mysql ] && return 0 + + if [ -z "$AUTO_SETUP" ] ; then + eerror "Database not found in $dir" + eerror "You can run '/etc/init.d/mysql setup' to setup a new database." + return 1 + fi + setup +} + +start() { + checkconfig || return 1 + ebegin "Starting mysqld" + start-stop-daemon --pidfile $pidfile \ + --start \ + --background \ + --stdout /dev/null \ + --stderr /dev/null \ + --wait 1500 \ + -- \ + /usr/bin/mysqld_safe --pid-file=$pidfile + eend $? +} + +stop () { + ebegin "Stopping mysqld" + start-stop-daemon --stop --quiet \ + --pidfile $pidfile --retry 20 + eend $? +} |