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. --- network-scripts/ifdown-bnep | 49 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 network-scripts/ifdown-bnep (limited to 'network-scripts/ifdown-bnep') diff --git a/network-scripts/ifdown-bnep b/network-scripts/ifdown-bnep new file mode 100755 index 00000000..9b2d385d --- /dev/null +++ b/network-scripts/ifdown-bnep @@ -0,0 +1,49 @@ +#! /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