diff options
author | makefu <github@syntax-fehler.de> | 2013-05-26 14:41:01 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-05-26 14:41:01 +0200 |
commit | 91b2ec7821796c75bb3a56df951c6734d41a26bb (patch) | |
tree | 61971a9ab364483018b4977ca2c1ae227c360040 /usr/lib/autowifi/lib/plugin_core | |
parent | d42681fb63901254700cfbb35116cbdca9945463 (diff) |
cleanup and usage for plugins
Diffstat (limited to 'usr/lib/autowifi/lib/plugin_core')
-rw-r--r-- | usr/lib/autowifi/lib/plugin_core | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/usr/lib/autowifi/lib/plugin_core b/usr/lib/autowifi/lib/plugin_core new file mode 100644 index 00000000..025d9dbd --- /dev/null +++ b/usr/lib/autowifi/lib/plugin_core @@ -0,0 +1,26 @@ +parse_plugin_args(){ + [ $# -ne 6 ] && plugin_usage && exit 1 + # convenience function to put args in ENV variables + ESSID="$1" + MAC="$2" + CHANNEL="$3" + ENC="$4" + WPA="$5" + WPA2="$6" + if [ ${#MAC} -ne 17 ] ;then + echo "MAC malformed" + exit 1 + fi +} +plugin_usage(){ + cat << EOF +usage: $0 ESSID MAC CHANNEL ENC WPA WPA2" + + ESSID - string + MAC - 00:11:22:33:44:55 + ENC - on | off + WPA - 0 | 1 + WPA2 - 0 | 1 +EOF + +} |