summaryrefslogtreecommitdiffstats
path: root/extra/oidentd/oidentd.initd
diff options
context:
space:
mode:
Diffstat (limited to 'extra/oidentd/oidentd.initd')
-rw-r--r--extra/oidentd/oidentd.initd42
1 files changed, 0 insertions, 42 deletions
diff --git a/extra/oidentd/oidentd.initd b/extra/oidentd/oidentd.initd
deleted file mode 100644
index c40b058da..000000000
--- a/extra/oidentd/oidentd.initd
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/www/viewcvs.gentoo.org/raw_cvs/gentoo-x86/net-misc/oidentd/files/oidentd-2.0.7-init,v 1.4 2007/10/24 11:38:14 uberlord Exp $
-
-depend() {
- need net
-}
-
-check_config() {
- if [ -z "${USER}" ]
- then
- eerror "Please set \$USER in /etc/conf.d/oidentd!"
- return 1
- fi
- if [ -z "${GROUP}" ]
- then
- eerror "Please set \$GROUP in /etc/conf.d/oidentd!"
- return 1
- fi
-
- if [ "$(sysctl -n security.bsd.see_other_uids 2>/dev/null)" = "0" ]; then
- eerror "${SVCNAME} cannot work if the sysctl security.bsd.see_other_uids is 0"
- return 1
- fi
-}
-
-
-start() {
- check_config || return 1
- ebegin "Starting oidentd"
- OPTIONS="${OPTIONS} -u ${USER} -g ${GROUP}"
- start-stop-daemon --start --quiet --exec /usr/sbin/oidentd -- $OPTIONS
- eend $?
-}
-
-stop() {
- ebegin "Stopping oidentd"
- start-stop-daemon --stop --quiet --exec /usr/sbin/oidentd
- eend $?
-}
-