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-bnep | 49 ----------------------------------- 1 file changed, 49 deletions(-) delete mode 100755 sysconfig/network-scripts/ifdown-bnep (limited to 'sysconfig/network-scripts/ifdown-bnep') diff --git a/sysconfig/network-scripts/ifdown-bnep b/sysconfig/network-scripts/ifdown-bnep deleted file mode 100755 index 9b2d385d..00000000 --- a/sysconfig/network-scripts/ifdown-bnep +++ /dev/null @@ -1,49 +0,0 @@ -#! /bin/bash - -. /etc/init.d/functions - -cd /etc/sysconfig/network-scripts -. ./network-functions - -[ -f ../network ] && . ../network - -CONFIG=${1} - -source_config - -# On hotplug events, just bring the virtual device up as if it's normal Ethernet -if [ -n "$IN_HOTPLUG" ]; then - exec /etc/sysconfig/network-scripts/ifdown-eth ${CONFIG} $2 -fi - -stop_panu() -{ - kill -TERM $(cat /run/pand-${DEVICE}.pid) -} - -stop_nap() -{ - kill -TERM $(cat /run/pand-${DEVICE}.pid) - /usr/bin/pand -K -} - -stop_gn() -{ - : -} - -case "$ROLE" in -PANU) - stop_panu - ;; -NAP) - stop_nap - ;; -GN) - stop_gn - ;; -*) - echo Unknown BNEP mode :$ROLE - ;; -esac - -- cgit v1.2.1