summaryrefslogtreecommitdiff
path: root/app-admin/sysrqd/files/sysrqd.init
diff options
context:
space:
mode:
Diffstat (limited to 'app-admin/sysrqd/files/sysrqd.init')
-rw-r--r--app-admin/sysrqd/files/sysrqd.init31
1 files changed, 0 insertions, 31 deletions
diff --git a/app-admin/sysrqd/files/sysrqd.init b/app-admin/sysrqd/files/sysrqd.init
deleted file mode 100644
index f88fc8ce43ef..000000000000
--- a/app-admin/sysrqd/files/sysrqd.init
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-checkconfig() {
- sysrqd_secret=/etc/sysrqd/sysrqd.secret
- sysrqd_pidfile=/var/run/sysrqd.pid
- if [ ! -e ${sysrqd_secret} ]; then
- eerror "You need a '${sysrqd_secret}' containing a secret/password!"
- eerror "Refusing to start."
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start --pidfile ${sysrqd_pidfile} --quiet --exec /usr/sbin/sysrqd
- eend $?
-}
-
-stop() {
- checkconfig || return 1
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop --quiet --pidfile ${sysrqd_pidfile}
- eend $?
-}