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/ifdown-ippp | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 sysconfig/network-scripts/ifdown-ippp (limited to 'sysconfig/network-scripts/ifdown-ippp') diff --git a/sysconfig/network-scripts/ifdown-ippp b/sysconfig/network-scripts/ifdown-ippp deleted file mode 100755 index ed203997..00000000 --- a/sysconfig/network-scripts/ifdown-ippp +++ /dev/null @@ -1,34 +0,0 @@ -#! /bin/sh - -PATH=/sbin:/usr/sbin:/bin:/usr/bin - -# Get global network configuration -[ -f /etc/sysconfig/network ] && . /etc/sysconfig/network - -CONFIG=$1 - -. ./$CONFIG - -# stopping ibod daemon for channel bundling -if [ -f /var/lock/subsys/ibod ] ; then - kill -9 $(pidof ibod) >/dev/null 2>&1 - rm -f /var/lock/subsys/ibod -fi - -# Shut down IPv6 -/etc/sysconfig/network-scripts/ifdown-ipv6 $CONFIG - -# shutdown isdn device -isdnctrl hangup $DEVICE >/dev/null 2>&1 -sleep 1 -ip link set dev $DEVICE down >/dev/null 2>&1 - -# delete isdn device -isdnctrl delif $DEVICE >/dev/null 2>&1 - -# kill ipppd daemon -if [ -f /run/ipppd.$DEVICE.pid ] ; then - pppdpid=$(cat /run/ipppd.$DEVICE.pid) - kill -9 $pppdpid > /dev/null 2>&1 - rm -f /run/ipppd.$DEVICE.pid > /dev/null 2>&1 -fi -- cgit v1.2.1