From 5939313f229e6fcf374fb7e9ee4f8675b05ab293 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 2 Feb 2024 17:45:32 +0000 Subject: gentoo auto-resync : 02:02:2024 - 17:45:32 --- net-misc/monmotha/Manifest | 4 --- net-misc/monmotha/files/monmotha.rc6 | 40 -------------------------- net-misc/monmotha/metadata.xml | 5 ---- net-misc/monmotha/monmotha-2.3.8-r1.ebuild | 46 ------------------------------ 4 files changed, 95 deletions(-) delete mode 100644 net-misc/monmotha/Manifest delete mode 100644 net-misc/monmotha/files/monmotha.rc6 delete mode 100644 net-misc/monmotha/metadata.xml delete mode 100644 net-misc/monmotha/monmotha-2.3.8-r1.ebuild (limited to 'net-misc/monmotha') diff --git a/net-misc/monmotha/Manifest b/net-misc/monmotha/Manifest deleted file mode 100644 index 7d02989e0138..000000000000 --- a/net-misc/monmotha/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX monmotha.rc6 825 BLAKE2B 0dd41a71c1f22291f83baeafabe4be4ec627b17e8c2a6df12033718055d737544d55fe30f9e97c775e5243a1b148133472b861f5954b5519302f6cdf4191ff8b SHA512 4d11a2c00d1829664a39ac1338b8dc803d4e32c8703a929b9ce93fdeed42e1ccdb11fa5ab7e837d883dae0a7534b1fe40cba281f4d88a3d291ebd2911e34bd10 -DIST rc.firewall-2.3.8 56204 BLAKE2B d699d5eb2c7efdfe258a2f38e2ffc1bb1e568c260c90a77a0fd1d27fbbe5b08ecefcc99d798fd210133ff8f7943fddacfc06a754044434e7525cd6449a92dc46 SHA512 ccdd3427a274204c697a64a8936d4311cb34fbb66738c6afc4c242baad01407d1a36adac7a73b24b432943cd7cec05c9c1d9b2d4845b8b132bd61378c0c2e098 -EBUILD monmotha-2.3.8-r1.ebuild 1227 BLAKE2B f2330cc73216517c94bea2ef894dce7924e68bc011d5ca599e8c846cc90ec27326cd16e66553ca35c03b47822bfdc8d3f214a51f94cc47444ac3ed025a2d95e2 SHA512 e207dcead1a072dd0f4be2ba38aab32dd545732290ba0ff985fca4db76e49378d8a54f3e6a1d1fbdb5e5847457102411bb8ad30eac4956919cf7ed8d566e69a5 -MISC metadata.xml 167 BLAKE2B 868e3b584722eaacf68273db062bb773d8c7e5d7ab2b81ca7e8397643bf7cc106c3a1033594401c99c54f667bb45d6b73f9048fc335580bbd44b4589ad26a832 SHA512 30caadd1496c3b9969136038239a1d8e01f236726b4022c2d7e19ca7575f25f735e556835e581afbf44fbd3e4104c40f2b5ef5fa70118d75c881fdf871962d0a 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 $? -} diff --git a/net-misc/monmotha/metadata.xml b/net-misc/monmotha/metadata.xml deleted file mode 100644 index 85e4ed814fa2..000000000000 --- a/net-misc/monmotha/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/net-misc/monmotha/monmotha-2.3.8-r1.ebuild b/net-misc/monmotha/monmotha-2.3.8-r1.ebuild deleted file mode 100644 index 00c63fadd917..000000000000 --- a/net-misc/monmotha/monmotha-2.3.8-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="MonMotha IPTables-based firewall script" -HOMEPAGE="http://monmotha.mplug.org/firewall/" -LICENSE="GPL-2" - -KEYWORDS="~amd64 x86" -IUSE="" -SLOT="0" -RDEPEND=">=net-firewall/iptables-1.2.5" - -MY_PVP=(${PV//[-\._]/ }) - -S=${WORKDIR} - -SRC_URI="http://monmotha.mplug.org/~monmotha/firewall/firewall/${MY_PVP[0]}.${MY_PVP[1]}/rc.firewall-${PV}" - -src_unpack() { - cp "${DISTDIR}"/${A} "${S}"/ -} - -src_install() { - newinitd "${FILESDIR}/monmotha.rc6" monmotha - exeinto /etc/monmotha - newexe "${S}/rc.firewall-${PV}" monmotha -} - -pkg_postinst() { - einfo "Don't forget to add the 'monmotha' startup script to your default" - einfo "runlevel by typing the following command:" - einfo "" - einfo " rc-update add monmotha default" - einfo "" - einfo "You need to edit /etc/monmotha/monmotha before using" - einfo "it. Enter the right vars in the file, start the script" - einfo "by typing: '/etc/init.d/monmotha start' and it should work." - einfo "" - einfo "Don't forget to change the path to iptables!!!" - einfo "" - einfo "Note: If You are stopping the firewall, all iptables rulesets" - einfo "will be flushed!!!" - einfo "" -} -- cgit v1.2.3