summaryrefslogtreecommitdiffstats
path: root/installer/ld4-inst
diff options
context:
space:
mode:
authorFelix Endres2006-05-01 01:24:31 +0200
committerFelix Endres2006-05-01 01:24:31 +0200
commit7fd0f219c94c26219f484620ead3317926172d69 (patch)
treec2b9192a6ea55cb1454961fdbac6ceecddb580eb /installer/ld4-inst
parentadditions, fixups to/of several function files ... (diff)
downloadcore-7fd0f219c94c26219f484620ead3317926172d69.tar.gz
core-7fd0f219c94c26219f484620ead3317926172d69.tar.xz
core-7fd0f219c94c26219f484620ead3317926172d69.zip
Debians udev is working now.
Bugs in the installer fixed git-svn-id: http://svn.openslx.org/svn/openslx/ld4@206 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/ld4-inst')
-rwxr-xr-xinstaller/ld4-inst8
1 files changed, 7 insertions, 1 deletions
diff --git a/installer/ld4-inst b/installer/ld4-inst
index 2c8c57a6..5ce4877c 100755
--- a/installer/ld4-inst
+++ b/installer/ld4-inst
@@ -234,7 +234,13 @@ configure() {
# more information here!! set useful default
ask "Which debug level should be used? " debuglevel $debuglevel
-
+ [ -z "$debuglevel" ] && debuglevel=0
+ while [[ "101" < "$debuglevel" ]]; do
+ echo "The debug level has to be a number from 0 to 100"
+ ask "Which debug level should be used? " debuglevel $debuglevel
+ [ -z "$debuglevel" ] && debuglevel=0
+ done
+
# wo ist das referenzsystem? - was ist default ???
if [ -z ${rsyncsource} ] ; then rsyncsource="localhost:/" ; fi
ask "IP + Path to reference system: " rsyncsource $rsyncsource