diff options
author | 2003-08-31 20:32:56 +0000 | |
---|---|---|
committer | 2003-08-31 20:32:56 +0000 | |
commit | 7735a723b41ae6f4dcc40e9fe0c4659cc33240f6 (patch) | |
tree | 8b51c5317986ccc50659a0f810ebecf52082e620 /net-firewall/ipkungfu/files | |
parent | Initial import. (diff) | |
download | historical-7735a723b41ae6f4dcc40e9fe0c4659cc33240f6.tar.gz historical-7735a723b41ae6f4dcc40e9fe0c4659cc33240f6.tar.bz2 historical-7735a723b41ae6f4dcc40e9fe0c4659cc33240f6.zip |
Initial import.
Diffstat (limited to 'net-firewall/ipkungfu/files')
-rw-r--r-- | net-firewall/ipkungfu/files/digest-ipkungfu-0.5.0 | 1 | ||||
-rw-r--r-- | net-firewall/ipkungfu/files/ipkungfu.init | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/net-firewall/ipkungfu/files/digest-ipkungfu-0.5.0 b/net-firewall/ipkungfu/files/digest-ipkungfu-0.5.0 new file mode 100644 index 000000000000..69d6c8e3498d --- /dev/null +++ b/net-firewall/ipkungfu/files/digest-ipkungfu-0.5.0 @@ -0,0 +1 @@ +MD5 272f0e723b33f0b25f23acb43bc6c610 ipkungfu-0.5.0.tgz 32818 diff --git a/net-firewall/ipkungfu/files/ipkungfu.init b/net-firewall/ipkungfu/files/ipkungfu.init new file mode 100644 index 000000000000..10f9059b6aca --- /dev/null +++ b/net-firewall/ipkungfu/files/ipkungfu.init @@ -0,0 +1,20 @@ +#!/sbin/runscript +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipkungfu/files/ipkungfu.init,v 1.1 2003/08/31 20:32:52 weeve Exp $ + +depend() { + need logger net +} + +start () { + ebegin "Starting ipkungfu" + /usr/sbin/ipkungfu --init + eend $? "Failed to start ipkungfu" +} + +stop() { + ebegin "Stopping ipkungfu" + /usr/sbin/ipkungfu --disable + eend $? "Failed to stop ipkungfu" +} |