summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/monmotha/files/monmotha.rc6')
-rw-r--r--net-misc/monmotha/files/monmotha.rc640
1 files changed, 0 insertions, 40 deletions
diff --git a/net-misc/monmotha/files/monmotha.rc6 b/net-misc/monmotha/files/monmotha.rc6
deleted file mode 100644
index 9bd0eeb8e2b1..000000000000
--- a/net-misc/monmotha/files/monmotha.rc6
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting the MonMotha Firewall"
- /etc/monmotha/monmotha > /var/log/monmotha.log
- eend $?
-}
-
-stop() {
- ebegin "Stopping the MonMotha Firewall"
-
- # RESET ALL IPTABLES STUFF
-
- /sbin/iptables -P INPUT ACCEPT
- /sbin/iptables -P FORWARD ACCEPT
- /sbin/iptables -P OUTPUT ACCEPT
-
- /sbin/iptables -t nat -P PREROUTING ACCEPT
- /sbin/iptables -t nat -P POSTROUTING ACCEPT
- /sbin/iptables -t nat -P OUTPUT ACCEPT
-
- /sbin/iptables -t mangle -P PREROUTING ACCEPT
- /sbin/iptables -t mangle -P OUTPUT ACCEPT
-
- /sbin/iptables -F
- /sbin/iptables -t nat -F
- /sbin/iptables -t mangle -F
-
- /sbin/iptables -X
- /sbin/iptables -t nat -X
- /sbin/iptables -t mangle -X
-
- eend $?
-}