summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wever <weeve@gentoo.org>2003-08-31 20:32:56 +0000
committerJason Wever <weeve@gentoo.org>2003-08-31 20:32:56 +0000
commit7735a723b41ae6f4dcc40e9fe0c4659cc33240f6 (patch)
tree8b51c5317986ccc50659a0f810ebecf52082e620 /net-firewall/ipkungfu/files
parentInitial import. (diff)
downloadhistorical-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.01
-rw-r--r--net-firewall/ipkungfu/files/ipkungfu.init20
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"
+}