From 455cc634b179a0782cfce3e9c35fe092bc54d4b4 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 20 Jan 2015 12:59:59 +0000 Subject: mariadb: moved from testing --- testing/mariadb/mariadb.initd | 58 ------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 testing/mariadb/mariadb.initd (limited to 'testing/mariadb/mariadb.initd') diff --git a/testing/mariadb/mariadb.initd b/testing/mariadb/mariadb.initd deleted file mode 100644 index 27632856cb..0000000000 --- a/testing/mariadb/mariadb.initd +++ /dev/null @@ -1,58 +0,0 @@ -#!/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 $? -} -- cgit v1.2.3