#!/bin/sh
#
#  Bond the wireless to the wired interface.

[ "$WIFIROAMD_BONDING_ENABLED" -eq 0 ] && exit 0
WIFIROAMD_BONDING_ENABLED=0

if [ -e /proc/net/bonding ]
then
	ifconfig bond0 down
	rmmod bonding
fi
