summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2004-10-21 16:06:32 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2004-10-21 16:06:32 +0000
commitaf482af3d01eba388516f8e8551276c9f5a177d3 (patch)
tree532f985ef993b8f956e0fa8b0b013a7e2f95d93a /net-setup
parentOnly run hwsetup when it exists. (diff)
downloadlivecd-tools-af482af3d01eba388516f8e8551276c9f5a177d3.tar.gz
livecd-tools-af482af3d01eba388516f8e8551276c9f5a177d3.tar.bz2
livecd-tools-af482af3d01eba388516f8e8551276c9f5a177d3.zip
Fixing quotes on for livecd-tools 1.0.8 release.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/livecd-tools/trunk@13 7bf51bff-881f-0410-a643-fba68b97345e
Diffstat (limited to 'net-setup')
-rwxr-xr-xnet-setup6
1 files changed, 3 insertions, 3 deletions
diff --git a/net-setup b/net-setup
index f60567d..33a665a 100755
--- a/net-setup
+++ b/net-setup
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/livecd-tools/net-setup,v 1.5 2004/10/20 11:37:33 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/livecd-tools/net-setup,v 1.6 2004/10/21 16:06:32 wolf31o2 Exp $
#!/bin/bash
@@ -43,14 +43,14 @@ case $WIRED_WIRELESS in
dialog --title "WEP (Part 3)" --inputbox "Please enter your WEP key in ASCII form. This should be 5 or 13 characters for either 64-bit or 128-bit encryption, repectively" 20 50 2> ${1}.WEPKEY
WEP_KEY=`cat ${1}.WEPKEY`
if [ -n "${WEP_KEY}" -a -x /usr/sbin/iwconfig ]; then
- /usr/sbin/iwconfig ${1} essid \""${SSID}"\"
+ /usr/sbin/iwconfig ${1} essid \"${SSID}\"
/usr/sbin/iwconfig ${1} key s:"${WEP_KEY}"
fi
;;
esac
;;
2)
- /usr/sbin/iwconfig ${1} essid \""${SSID}"\"
+ /usr/sbin/iwconfig ${1} essid \"${SSID}\"
/usr/sbin/iwconfig ${1} key off
;;
esac