From cf55c69366d1afc25af40b839eabf2f773a3ef7c Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 22 Jul 2004 02:05:57 +0000 Subject: [PATCH] Laid claims on email address --- if-up.d/bluesocket | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/if-up.d/bluesocket b/if-up.d/bluesocket index 0710330..d619556 100755 --- a/if-up.d/bluesocket +++ b/if-up.d/bluesocket @@ -4,8 +4,10 @@ # This particular version is tailored for my college, and only launches if # the local ip address is on the subnet used there. -email="nvcwireless%40rebelongto.us" +# PLEASE CHANGE EMAIL ADDRESS BEFORE USING! +[ "`hostname`" != lisa ] || email="nvcwireless%40rebelongto.us" +#email=your-email-address-here if [ -z "${1:-$IFACE}" ] || /sbin/ifconfig "${1:-$IFACE}"|grep -qs 'inet addr:10\.0\.1[45]'; then - /usr/bin/curl -k 'https://10.12.0.210/login.pl' --data '_FORM_SUBMIT=1' --data 'which_form=guest' --data 'destination=http%3A//www.google.com/' --data 'source=10.12.0.240' --data "bs_email=$email" >/dev/null 2>&1 + /usr/bin/curl -k 'https://10.12.0.210/login.pl' --data '_FORM_SUBMIT=1' --data 'which_form=guest' --data 'destination=http%3A//www.google.com/' --data 'source=10.12.0.240' --data "bs_email=`echo $email|sed -e 's/@/%40/'`" >/dev/null 2>&1 fi -- 2.30.2