X-Git-Url: http://git.grml.org/?a=blobdiff_plain;ds=sidebyside;f=grml-terminalserver-config;h=50000b65f63d3431a8d0900deef756a76b89c7ac;hb=HEAD;hp=9b01239eceb80f13279186f12894395d1d1a162d;hpb=00ee2943bfe06b976cd72b0c4572d00ff9abdbd2;p=grml-terminalserver.git diff --git a/grml-terminalserver-config b/grml-terminalserver-config index 9b01239..2140d69 100755 --- a/grml-terminalserver-config +++ b/grml-terminalserver-config @@ -168,10 +168,10 @@ for addresses from 192.168.0.101 to (and including) 192.168.0.200. IPRANGE_FROM_=`execute "ipcalc -nb $IP_/$NETMASK_" warn |awk '/HostMin/{print $2}'` # if we have x.x.x.1 as starting range address provide - # x.x.x.10 instead so we avoid possible conflicts with + # x.x.x.100 instead so we avoid possible conflicts with # default gateway - if echo $IPFROM | grep -c '\.1$' ; then - IPFROM="${IPFROM%%\.1}.10" + if echo "$IPRANGE_FROM_" | grep -q '\.1$' ; then + IPRANGE_FROM_="${IPRANGE_FROM_%%\.1}.100" fi IPRANGE_TO_=`execute "ipcalc -nb $IP_/$NETMASK_" warn |awk '/HostMax/{print $2}'` NETWORK_=`execute "ipcalc -nb $IP_/$NETMASK_" warn |awk '/Network:/{print $2}'` @@ -220,9 +220,9 @@ the internet?" fi echo -n "" >"$TMP_" - local OPTIONS_BOOTARG_MESSAGE_="Here you can add additional boot arguments for the clients seperated by spaces: + local OPTIONS_BOOTARG_MESSAGE_="Here you can add additional boot arguments for the clients separated by spaces: -Quite usefull examples: +Quite useful examples: ssh= - Start ssh server and set password of user grml to pw services=<1,2,3> - Execute /etc/init.d/{1,2,3} start @@ -289,18 +289,6 @@ setExitFunction 'removeTmpFiles' . $DEFAULT_CONFIG_ . $CONFIG_ -# used config vars: -# MODULES_PATH_ -# MODULES_PATH_ROOT_DIFF_ -# KERNEL_VERSION_ -# ORIGINAL_INITRD_ -if [[ $MODULES_PATH_ == "" || $KERNEL_VERSION_ == "" || $ORIGINAL_INITRD_ == "" ]]; then - warn "MODULES_PATH_=\"$MODULES_PATH_\" \ -KERNEL_VERSION_=\"$KERNEL_VERSION_\" \ -ORIGINAL_INITRD_=\"$ORIGINAL_INITRD_\"" - die "False configuration, please update $CONFIG_" -fi - case "$1" in interactive) actionInteractive ;;