From 90c88731bd036e5698b281fbc0a5f3aa4c9983ac Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 29 Jun 2020 11:38:31 +0100 Subject: gentoo resync : 29.06.2020 --- net-fs/ncpfs/files/ipx.init | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 net-fs/ncpfs/files/ipx.init (limited to 'net-fs/ncpfs/files/ipx.init') diff --git a/net-fs/ncpfs/files/ipx.init b/net-fs/ncpfs/files/ipx.init deleted file mode 100644 index e4aa25716c5d..000000000000 --- a/net-fs/ncpfs/files/ipx.init +++ /dev/null @@ -1,41 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -#NB: Config is in /etc/conf.d/ipx - -depend() { - need net netmount -} - -start() { - local retval=0 - - ebegin "Bringing IPX up" - if [ ${IPX_INTERNAL_NET} = "yes" ] - then - /usr/bin/ipx_internal_net add ${IPX_NETNUM} ${IPX_NODENUM} - retval=$? - else - /usr/bin/ipx_interface add -p ${IPX_DEVICE} \ - ${IPX_FRAME} ${IPX_NETNUM} - retval=$? - fi - - /usr/bin/ipx_configure \ - --auto_primary=${IPX_AUTO_PRIMARY} \ - --auto_interface=${IPX_AUTO_INTERFACE} - retval=$(( $retval + $? )) - eend ${retval} "Failed to bring IPX up" -} - -stop() { - local retval=0 - - ebegin "Bringing IPX down" - /usr/bin/ipx_configure --auto_primary=off --auto_interface=off - retval=$? - /usr/bin/ipx_interface delall - retval=$(( $retval + $? )) - eend ${retval} "Failed to down IPX" -} -- cgit v1.2.3