diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-02-12 18:17:41 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-02-12 18:17:41 +0000 |
commit | 57bb4634d06742ff025498d1c9d3bc5e441129e8 (patch) | |
tree | b29ceca307a94beff32a15c5ba732b131c1b5ef0 /net-setup | |
parent | Adding better ATI support. Let's all hope my regex skills are good. =] (diff) | |
download | livecd-tools-57bb4634d06742ff025498d1c9d3bc5e441129e8.tar.gz livecd-tools-57bb4634d06742ff025498d1c9d3bc5e441129e8.tar.bz2 livecd-tools-57bb4634d06742ff025498d1c9d3bc5e441129e8.zip |
cosmetic update.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/livecd-tools/trunk@40 7bf51bff-881f-0410-a643-fba68b97345e
Diffstat (limited to 'net-setup')
-rwxr-xr-x | net-setup | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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.9 2005/01/28 19:21:32 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/livecd-tools/net-setup,v 1.10 2005/02/12 18:17:41 wolf31o2 Exp $ #!/bin/bash @@ -86,8 +86,8 @@ config_ip() { esac } -dialog --title "Network setup" --menu "This script is designed to setup both wired and wireless network settings. All questions below apply to the ${1} interface only. Choose one option:" 20 60 7 1 "My network is wireless" 2 "My network is wired" 2> ${1}.WIRED -WIRED_WIRELESS=`cat ${1}.WIRED` +dialog --title "Network setup" --menu "This script is designed to setup both wired and wireless network settings. All questions below apply to the ${1} interface only. Choose one option:" 20 60 7 1 "My network is wireless" 2 "My network is wired" 2> ${1}.WIRED_WIRELESS +WIRED_WIRELESS=`cat ${1}.WIRED_WIRELESS` case ${WIRED_WIRELESS} in 1) config_wireless |