summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-scripts/net.modules.d/macnet')
-rw-r--r--net-scripts/net.modules.d/macnet35
1 files changed, 4 insertions, 31 deletions
diff --git a/net-scripts/net.modules.d/macnet b/net-scripts/net.modules.d/macnet
index 3ab8cd1..5ef8f30 100644
--- a/net-scripts/net.modules.d/macnet
+++ b/net-scripts/net.modules.d/macnet
@@ -10,37 +10,10 @@
#
# Sets up the dependancies for the module
macnet_depend() {
- before interface wireless
- after macchanger
-}
-
-# bool macnet_check_installed(void)
-#
-# Always returns 0 as we are "installed" by wireless in the depend function
-macnet_check_installed() {
- return 0
-}
-
-# char* macnet_provides(void)
-#
-# Returns a string to change module definition for starting up
-macnet_provides() {
- echo "macnet"
-}
-
-# bool macnet_check_depends(void)
-#
-# Checks to see if we have the needed functions
-macnet_check_depends() {
- local f
-
- for f in interface_get_mac_address; do
- [[ $( type -t "${f}" ) == "function" ]] && continue
- eerror "macnet: missing required function ${f}\n"
- return 1
- done
-
- return 0
+ before rename interface wireless
+ after macchanger
+ installed macchanger
+ functions interface_get_mac_address
}
# bool macnet_start(char *iface)