aboutsummaryrefslogtreecommitdiffstats
path: root/network-scripts/ifup-bnep
diff options
context:
space:
mode:
authorOlav Vitters <olav@vitters.nl>2020-07-26 21:46:44 +0200
committerOlav Vitters <olav@vitters.nl>2020-07-26 21:46:44 +0200
commit244c9a00ae9a0dc62156aeb8781c2b22da0ad96e (patch)
treec0d76ed490862837a8a37bb61ed8e653e5cc2558 /network-scripts/ifup-bnep
parentd0d18c6de12efeba25eb41d7cf207037027e4964 (diff)
parent6ca701a23c74b245f35750149a22f7d21805a8e0 (diff)
downloadinitscripts-244c9a00ae9a0dc62156aeb8781c2b22da0ad96e.tar
initscripts-244c9a00ae9a0dc62156aeb8781c2b22da0ad96e.tar.gz
initscripts-244c9a00ae9a0dc62156aeb8781c2b22da0ad96e.tar.bz2
initscripts-244c9a00ae9a0dc62156aeb8781c2b22da0ad96e.tar.xz
initscripts-244c9a00ae9a0dc62156aeb8781c2b22da0ad96e.zip
Merge tag '10.04' into distro/mga
10.04 release
Diffstat (limited to 'network-scripts/ifup-bnep')
-rwxr-xr-xnetwork-scripts/ifup-bnep55
1 files changed, 55 insertions, 0 deletions
diff --git a/network-scripts/ifup-bnep b/network-scripts/ifup-bnep
new file mode 100755
index 00000000..5650b092
--- /dev/null
+++ b/network-scripts/ifup-bnep
@@ -0,0 +1,55 @@
+#! /bin/bash
+
+. /etc/init.d/functions
+
+cd /etc/sysconfig/network-scripts
+. ./network-functions
+
+[ -f /etc/sysconfig/network ] && . /etc/sysconfig/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 sh -x /etc/sysconfig/network-scripts/ifup-eth ${CONFIG} $2
+fi
+
+start_panu()
+{
+ PANDARGS="--persist --pidfile=/run/pand-${DEVICE}.pid --ethernet=${DEVICE} --autozap"
+ [ "${CACHE}" != "no" -a "${CACHE}" != "NO" ] && PANDARGS="${PANDARGS} --cache"
+ if [ "${REMOTEBDADDR}" = "" ]; then
+ PANDARGS="${PANDARGS} --search"
+ else
+ PANDARGS="${PANDARGS} --connect ${REMOTEBDADDR}"
+ fi
+ /usr/bin/pand ${PANDARGS}
+}
+
+start_nap()
+{
+ :
+}
+
+start_gn()
+{
+ :
+}
+
+case "$ROLE" in
+PANU)
+ start_panu
+ ;;
+NAP)
+ start_nap
+ ;;
+GN)
+ start_gn
+ ;;
+*)
+ echo Unknown BNEP mode :$ROLE
+ ;;
+esac
+