[Guessnet-devel] [svn] r163 - in trunk: debian scripts

Joachim Breitner nomeata at costa.debian.org
Fri Sep 8 08:21:28 UTC 2006


Author: nomeata
Date: Fri Sep  8 08:21:28 2006
New Revision: 163

Modified:
   trunk/debian/changelog
   trunk/scripts/test-wireless
Log:
fixing #329419 (ifconfig down in test-wireless)

Modified: trunk/debian/changelog
==============================================================================
--- trunk/debian/changelog	(original)
+++ trunk/debian/changelog	Fri Sep  8 08:21:28 2006
@@ -1,3 +1,14 @@
+guessnet (0.39-3) UNRELEASED; urgency=low
+
+  * test-wireless makes wireless interface lose association (Closes:
+    #329419)
+    Until now, test-wireless ifconfig up'ed the interface and ifconfig down'ed
+    it afterwards, which always caused a disconnect. I have removed these
+    lines. If it breaks it for you now, please tell us, so that we can
+    implement a conditional ifconfig-up-and-down'ing.
+
+ -- Joachim Breitner <nomeata at debian.org>  Thu,  7 Sep 2006 22:21:45 +0000
+
 guessnet (0.39-2) unstable; urgency=low
 
   * Added pkg-config to build dependencies, thanks to Andreas Jochens for the

Modified: trunk/scripts/test-wireless
==============================================================================
--- trunk/scripts/test-wireless	(original)
+++ trunk/scripts/test-wireless	Fri Sep  8 08:21:28 2006
@@ -46,7 +46,6 @@
 [ "$MAC_ADDRESS" ] || [ "$ESSID" ] || { report_err "Neither AP MAC address nor ESSID specified.  Exiting." ; exit 1 ; }
 
 FAILED=0
-ifconfig "$IFACE" up
 do_sleep 0.5
 if [ "$MAC_ADDRESS" ] ; then
 	ACTUAL_MAC_ADDRESS="$(iwgetid "$IFACE" --ap)"
@@ -61,6 +60,5 @@
 	ACTUAL_ESSID="${ACTUAL_ESSID%\"*}"
 	[ "$ACTUAL_ESSID" = "$ESSID" ] || FAILED=1
 fi
-ifconfig "$IFACE" down
 exit "$FAILED"
 



More information about the Guessnet-devel mailing list