From cb3e8c6af7661fbcafdcacc7e0ecdfb610d098fa Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 9 Jun 2018 09:27:03 +0100 Subject: gentoo resync : 09.06.2018 --- .../shorewall/files/shorewall-lite.initd-r2 | 90 ----------------- net-firewall/shorewall/files/shorewall.initd-r2 | 107 --------------------- net-firewall/shorewall/files/shorewallrc-r2 | 24 ----- 3 files changed, 221 deletions(-) delete mode 100644 net-firewall/shorewall/files/shorewall-lite.initd-r2 delete mode 100644 net-firewall/shorewall/files/shorewall.initd-r2 delete mode 100644 net-firewall/shorewall/files/shorewallrc-r2 (limited to 'net-firewall/shorewall/files') diff --git a/net-firewall/shorewall/files/shorewall-lite.initd-r2 b/net-firewall/shorewall/files/shorewall-lite.initd-r2 deleted file mode 100644 index b319a0e7af2b..000000000000 --- a/net-firewall/shorewall/files/shorewall-lite.initd-r2 +++ /dev/null @@ -1,90 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -if [ "${RC_SVCNAME}" = "shorewall6-lite" ]; then - PRODUCT_NAME="Shorewall6-Lite" - command="/usr/sbin/shorewall6-lite" -else - PRODUCT_NAME="Shorewall-Lite" - command="/usr/sbin/shorewall-lite" -fi - -description="The Shoreline Firewall Lite, more commonly known as \"${PRODUCT_NAME}\", is" -description="${description} a high-level tool for configuring Netfilter." - -extra_commands="clear" -extra_started_commands="reload reset" - -description_clear="Clear will remove all rules and chains installed by" -description_clear="${description_clear} ${PRODUCT_NAME}. The firewall is" -description_clear="${description_clear} then wide open and unprotected." - -description_reload="Reload is similar to \"${RC_SERVICE} start\" except that it assumes" -description_reload="${description_reload} that the firewall is already started." -description_reload="${description_reload} Existing connections are maintained." - -description_reset="All the packet and byte counters in the firewall are reset." - -depend() { - provide firewall - after ulogd -} - -clear() { - ebegin "Clearing all ${RC_SVCNAME} rules and setting policy to ACCEPT" - ${command} ${OPTIONS} clear 1>/dev/null - eend $? -} - -reload() { - ebegin "Reloading ${RC_SVCNAME}" - ${command} ${OPTIONS} reload ${RELOADOPTIONS} 1>/dev/null - eend $? -} - -reset() { - ebegin "Resetting the packet and byte counters in ${RC_SVCNAME}" - ${command} ${OPTIONS} reset 1>/dev/null - eend $? -} - -restart() { - local _retval - ebegin "Restarting ${RC_SVCNAME}" - ${command} status 1>/dev/null - _retval=$? - if [ ${_retval} = '0' ]; then - svc_start - else - ${command} ${OPTIONS} restart ${RESTARTOPTIONS} 1>/dev/null - fi - eend $? -} - -start() { - ebegin "Starting ${RC_SVCNAME}" - ${command} ${OPTIONS} start ${STARTOPTIONS} 1>/dev/null - eend $? -} - -status() { - local _retval - ${command} status 1>/dev/null - _retval=$? - if [ ${_retval} = '0' ]; then - einfo 'status: started' - mark_service_started "${SVCNAME}" - return 0 - else - einfo 'status: stopped' - mark_service_stopped "${SVCNAME}" - return 3 - fi -} - -stop() { - ebegin "Stopping ${RC_SVCNAME}" - ${command} ${OPTIONS} stop ${STOPOPTIONS} 1>/dev/null - eend $? -} diff --git a/net-firewall/shorewall/files/shorewall.initd-r2 b/net-firewall/shorewall/files/shorewall.initd-r2 deleted file mode 100644 index 4826610e2216..000000000000 --- a/net-firewall/shorewall/files/shorewall.initd-r2 +++ /dev/null @@ -1,107 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -if [ "${RC_SVCNAME}" = "shorewall6" ]; then - PRODUCT_NAME="Shorewall6" - command="/usr/sbin/shorewall6" -else - PRODUCT_NAME="Shorewall" - command="/usr/sbin/shorewall" -fi - -description="The Shoreline Firewall, more commonly known as \"${PRODUCT_NAME}\", is" -description="${description} a high-level tool for configuring Netfilter." - -extra_commands="check clear" -extra_started_commands="refresh reload reset" - -description_check="Checks if the configuration will compile or not." - -description_clear="Clear will remove all rules and chains installed by" -description_clear="${description_clear} ${PRODUCT_NAME}. The firewall is then" -description_clear="${description_clear} wide open and unprotected." - -description_refresh="The mangle table will be refreshed along with the" -description_refresh="${description_refresh} blacklist chain (if any)." - -description_reload="Reload is similar to \"${RC_SERVICE} start\" except that it assumes" -description_reload="${description_reload} that the firewall is already started." -description_reload="${description_reload} Existing connections are maintained." - -description_reset="All the packet and byte counters in the firewall are reset." - -depend() { - provide firewall - after ulogd -} - -check() { - ebegin "Checking ${RC_SVCNAME} configuration" - ${command} ${OPTIONS} check 1>/dev/null - eend $? -} - -clear() { - ebegin "Clearing all ${RC_SVCNAME} rules and setting policy to ACCEPT" - ${command} ${OPTIONS} clear 1>/dev/null - eend $? -} - -refresh() { - ebegin "Refreshing ${RC_SVCNAME} rules" - ${command} ${OPTIONS} refresh 1>/dev/null - eend $? -} - -reload() { - ebegin "Reloading ${RC_SVCNAME}" - ${command} ${OPTIONS} reload ${RELOADOPTIONS} 1>/dev/null - eend $? -} - -reset() { - ebegin "Resetting the packet and byte counters in ${RC_SVCNAME}" - ${command} ${OPTIONS} reset 1>/dev/null - eend $? -} - -restart() { - local _retval - ebegin "Restarting ${RC_SVCNAME}" - ${command} status 1>/dev/null - _retval=$? - if [ ${_retval} = '0' ]; then - svc_start - else - ${command} ${OPTIONS} restart ${RESTARTOPTIONS} 1>/dev/null - fi - eend $? -} - -start() { - ebegin "Starting ${RC_SVCNAME}" - ${command} ${OPTIONS} start ${STARTOPTIONS} 1>/dev/null - eend $? -} - -status() { - local _retval - ${command} status 1>/dev/null - _retval=$? - if [ ${_retval} = '0' ]; then - einfo 'status: started' - mark_service_started "${SVCNAME}" - return 0 - else - einfo 'status: stopped' - mark_service_stopped "${SVCNAME}" - return 3 - fi -} - -stop() { - ebegin "Stopping ${RC_SVCNAME}" - ${command} ${OPTIONS} stop ${STOPOPTIONS} 1>/dev/null - eend $? -} diff --git a/net-firewall/shorewall/files/shorewallrc-r2 b/net-firewall/shorewall/files/shorewallrc-r2 deleted file mode 100644 index ecc21a23875a..000000000000 --- a/net-firewall/shorewall/files/shorewallrc-r2 +++ /dev/null @@ -1,24 +0,0 @@ -# -# Gentoo Shorewall 5.1 rc file -# -BUILD=gentoo #Default is to detect the build system -HOST=gentoo #Gentoo GNU Linux -PREFIX=@GENTOO_PORTAGE_EPREFIX@/usr #Top-level directory for shared files, libraries, etc. -SHAREDIR=${PREFIX}/share #Directory for arch-neutral files. -LIBEXECDIR=${PREFIX}/share #Directory for executable scripts. -PERLLIBDIR=${PREFIX}/share/shorewall #Directory to install Shorewall Perl module directory -CONFDIR=@GENTOO_PORTAGE_EPREFIX@/etc #Directory where subsystem configurations are installed -SBINDIR=${PREFIX}/sbin #Directory where system administration programs are installed -MANDIR=${PREFIX}/share/man #Directory where manpages are installed. -INITDIR=${CONFDIR}/init.d #Directory where SysV init scripts are installed. -INITFILE=${PRODUCT} #Name of the product's installed SysV init script -INITSOURCE=init.gentoo.sh #Name of the distributed file to be installed as the SysV init script -ANNOTATED= #If non-zero, annotated configuration files are installed -SERVICEDIR=tbs #Directory where .service files are installed (systems running systemd only) -SERVICEFILE=gentoo.service #Name of the distributed file to be installed as systemd service file -SYSCONFFILE=default.gentoo #Name of the distributed file to be installed in $SYSCONFDIR -SYSCONFDIR=${CONFDIR}/conf.d #Directory where SysV init parameter files are installed -SPARSE= #If non-empty, only install $PRODUCT/$PRODUCT.conf in $CONFDIR -VARLIB=@GENTOO_PORTAGE_EPREFIX@/var/lib #Directory where product variable data is stored. -VARDIR=${VARLIB}/${PRODUCT} #Directory where product variable data is stored. -DEFAULT_PAGER=${PAGER} #Pager to use if none specified in shorewall[6].conf -- cgit v1.2.3