blob: d8db406a6753b21575cb92b9996b67bb4fcfba9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 :
|