diff options
Diffstat (limited to 'net/macnet.sh')
-rw-r--r-- | net/macnet.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/net/macnet.sh b/net/macnet.sh new file mode 100644 index 00000000..d8db406a --- /dev/null +++ b/net/macnet.sh @@ -0,0 +1,19 @@ +# Copyright 2005-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +macnet_depend() { + before rename interface wireless + after macchanger +} + +macnet_pre_start() { + local mac=$(_get_mac_address 2>/dev/null) + [ -z "${mac}" ] && return 0 + + vebegin "Configuring ${IFACE} for MAC address ${mac}" + mac=$(echo "${mac}" | sed -e 's/://g') + _configure_variables "${mac}" + veend 0 +} + +# vim: set ts=4 : |