diff options
author | lassulus <lassulus@googlemail.com> | 2013-06-05 18:57:33 +0200 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2013-06-05 18:57:33 +0200 |
commit | 5a428d4646b73f16b890f6c089a67dbc710df533 (patch) | |
tree | f2c429cb79f7f3937e43130a50241a2e7c81950b /autowifi/confdir | |
parent | a653b947f5238267201e155005b603664a39d0e8 (diff) |
autowifi: now with hooks
Diffstat (limited to 'autowifi/confdir')
-rwxr-xr-x | autowifi/confdir/hooks/wlan0/post/00tinc-up | 2 | ||||
-rwxr-xr-x | autowifi/confdir/hooks/wlan0/pre/00changemac | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/autowifi/confdir/hooks/wlan0/post/00tinc-up b/autowifi/confdir/hooks/wlan0/post/00tinc-up new file mode 100755 index 00000000..3fd786e4 --- /dev/null +++ b/autowifi/confdir/hooks/wlan0/post/00tinc-up @@ -0,0 +1,2 @@ +#!/bin/sh +tincd -n retiolum -kALRM diff --git a/autowifi/confdir/hooks/wlan0/pre/00changemac b/autowifi/confdir/hooks/wlan0/pre/00changemac new file mode 100755 index 00000000..c3e0632f --- /dev/null +++ b/autowifi/confdir/hooks/wlan0/pre/00changemac @@ -0,0 +1,5 @@ +#!/bin/sh +ifconfig wlan0 down +sleep 1 +macchanger -r wlan0 +ifconfig wlan0 up |