diff options
Diffstat (limited to 'net-firewall/tuxguardian/files/tuxguardian.init')
-rw-r--r-- | net-firewall/tuxguardian/files/tuxguardian.init | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/net-firewall/tuxguardian/files/tuxguardian.init b/net-firewall/tuxguardian/files/tuxguardian.init deleted file mode 100644 index c6fefca86..000000000 --- a/net-firewall/tuxguardian/files/tuxguardian.init +++ /dev/null @@ -1,28 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: - - -PID=/var/run/tuxguardian.pid - -depend() { - after net -} - - - -start() { - ebegin "Starting tuxguardian" - start-stop-daemon --start --quiet --background --pidfile ${PID} \ - --exec /usr/sbin/tg-daemon - /sbin/modprobe tuxg - eend ${?} -} - -stop() { - ebegin "Stopping fancontrol" - start-stop-daemon --stop --pidfile ${PID} - /sbin/modprobe -rf tuxg - eend ${?} -} |