From a145ddda284570e57413e37f025c3657205e17d8 Mon Sep 17 00:00:00 2001 From: "David Kaspar [Dee'Kej]" Date: Fri, 25 May 2018 20:01:54 +0200 Subject: Repository scheme updated to new layout NOTE: This commit just moves files around, without actually fixing the Makefiles and specfile. See follow up commits which resolve this. --- sysconfig/network-scripts/ifup-plip | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 sysconfig/network-scripts/ifup-plip (limited to 'sysconfig/network-scripts/ifup-plip') diff --git a/sysconfig/network-scripts/ifup-plip b/sysconfig/network-scripts/ifup-plip deleted file mode 100755 index 2cea68b4..00000000 --- a/sysconfig/network-scripts/ifup-plip +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -cd /etc/sysconfig/network-scripts -. ./network-functions - -CONFIG=$1 -source_config - -if [ "foo$2" = "fooboot" -a "${ONBOOT}" = "no" ]; then - exit -fi - -[ -z "$PREFIX" ] && eval $(/bin/ipcalc --prefix ${IPADDR} ${NETMASK}) -ip addr add ${IPADDR} peer ${REMIP}/${PREFIX} dev ${DEVICE} -ip link set up dev ${DEVICE} -ip route add ${NETWORK} dev ${DEVICE} - -. /etc/sysconfig/network - -if [ "${GATEWAY}" != "" ]; then - if [ "${GATEWAYDEV}" = "" -o "${GATEWAYDEV}" = "${DEVICE}" ]; then - # set up default gateway - ip route replace default ${METRIC:+metric $METRIC} via ${GATEWAY} - fi -fi - -/etc/sysconfig/network-scripts/ifup-post $1 -- cgit v1.2.1