diff options
author | Robert Bays <rbays@moresby.vyatta.com> | 2008-07-07 14:05:31 -0700 |
---|---|---|
committer | Robert Bays <rbays@moresby.vyatta.com> | 2008-07-07 14:05:31 -0700 |
commit | 95d9651eb951d10572503d783aea0e02d44e98d5 (patch) | |
tree | 0d15ffb83e171170836ba6aec08e061775437d03 /scripts | |
parent | 9e1fe74bdcd68ce3f39afcacde91ef5bc14470f9 (diff) | |
download | vyatta-cfg-quagga-95d9651eb951d10572503d783aea0e02d44e98d5.tar.gz vyatta-cfg-quagga-95d9651eb951d10572503d783aea0e02d44e98d5.zip |
fix for bug 3095
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-system | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/install-system b/scripts/install-system index b5eefe62..a7a0b066 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -528,16 +528,19 @@ copy_config () { if [ -z "$config" ]; then config="$fdconfdir/config.boot" else - config="$config\n$fdconfdir/config.boot" + config="$config $fdconfdir/config.boot" fi fi if [ -n "$config" ]; then echo "I found the following configuration files" - echo -e "$config" - default=$(echo -e $config| head -1) + for file in $config + do + echo $file + done + + default=$(echo -e $config | awk '{ print $1 }') - resp='' while [ -z "$configfile" ] do echo -n "Which one should I copy to $INSTALL_DRIVE? [$default]: " |