summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-proxy/oops/files/oops.initd')
-rw-r--r--net-proxy/oops/files/oops.initd27
1 files changed, 0 insertions, 27 deletions
diff --git a/net-proxy/oops/files/oops.initd b/net-proxy/oops/files/oops.initd
deleted file mode 100644
index fec45e6afda4..000000000000
--- a/net-proxy/oops/files/oops.initd
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting oops"
- /usr/sbin/oopsctl start &> /dev/null
- eend $?
-}
-
-status() {
- if service_started "${myservice}"; then
- /usr/sbin/oopsctl stat
- fi
- return 0
-}
-
-stop() {
- ebegin "Stopping oops"
- /usr/sbin/oopsctl stop &> /dev/null
- eend $?
-}