add additional newline in front so text doesn't appear inside dialog's output
[grml-terminalserver.git] / grml-terminalserver-config
1 #!/bin/bash
2 # Filename:      terminalserver-config
3 # Purpose:       configuration program for grml-terminalserver
4 # Authors:       grml-team (grml.org), (c) Michael Gebetsroither <gebi@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 # Latest change: Son Jän 20 12:12:44 CET 2008 [mika]
8 ################################################################################
9
10
11 ###
12 ### __INCLUDES
13 ###
14 . /etc/grml/sh-lib
15 #. /etc/grml/sysexits-sh
16
17
18
19 ###
20 ### __VARIABLES
21 ###
22
23 verbose_=0
24
25 # this file holds all variable definitions
26 SHARED_PROG_VARS_="/usr/share/grml-terminalserver/shared_prog_vars"
27 isExistent $SHARED_PROG_VARS_ die
28 . $SHARED_PROG_VARS_
29
30 # variables used in the config file for grml-terminalserver
31 INTERFACE_=""
32 IP_=""
33 NETMASK_=""
34 GW_=""
35 NAMESERVERS_=""
36 IPRANGE_FROM_=""
37 IPRANGE_TO_=""
38 NETWORK_=""
39 OPTIONS_=""
40 BOOT_ARGS_=""
41 NAT_INTERFACE_=""
42
43
44 ###
45 ### __FUNCTIONS
46 ###
47
48 function printUsage
49 {
50   cat <<EOT
51 Usage: "$PROG_NAME__" [OPTIONS] <command>
52
53 $PROG_NAME__ is the config program for the terminalserver coming with grml.
54
55 COMMANDS:
56
57    help             This help text
58    interactive      Interactive Configuration of the grml-terminalserver
59    grubConf <file>  Configure grub and create boot-image (for non-PXE NICs)
60                       Read modules for grub from file if given.
61    grubConfWrite    Configure grub and write image to floppy disk
62    grubWrite        Write compiled grub-image to floppy disk
63    grubMultiWrite   batchwrite grub-image to floppy disk
64    initrd           Only create the initrd
65    clean            Remove all configfiles created during user configuration
66    <default>        interactive mode
67
68 OPTIONS:
69    -v               verbose (show what is going on, v++)
70    -h               this help text
71
72 EOT
73 }
74
75
76 function writeConfig
77 {
78   local date_=""
79
80   if [ -f $CONF_FILE_ ]; then
81     mv -fb $CONF_FILE_ ${CONF_FILE_}-old
82   fi
83
84   date_=`date`
85   cat <<EOT > $CONF_FILE_
86 # GRML TERMINAL-SERVER CONFIG
87 # created on "$date_"
88 INTERFACE_="$INTERFACE_"
89 IP_="$IP_"
90 NETWORK_="$NETWORK_"
91 NETMASK_="$NETMASK_"
92 GW_="$GW_"
93 NAMESERVERS_="$NAMESERVERS_"
94 IPRANGE_FROM_="$IPRANGE_FROM_"
95 IPRANGE_TO_="$IPRANGE_TO_"
96 OPTIONS_="$OPTIONS_"
97 BOOT_ARGS_="$BOOT_ARGS_"
98 NAT_INTERFACE_="$NAT_INTERFACE_"
99
100 EOT
101   notice "config successfully safed to \"$CONF_FILE_\""
102 }
103
104
105 # AUTOMATIC CONFIGURATION  {{{
106 function checkParamArg
107 {
108   local param_name="$1"
109   local arg="$2"
110
111   #eval "echo $`echo $test`"
112   echo $arg |grep "^[-|+]" &>/dev/null || return
113
114   die "Argument from $param_name looks like another parameter \"$arg\"" 1
115 }
116
117 function actionAutoconf
118 {
119   checkParamArg "-i" "$interface_"
120 }
121 # }}}
122
123
124 # INITRD {{{
125 function actionMkInitrd
126 {
127   echo
128   echo -n "Creating initrd $PATH_/minirt26.gz: "
129   if isExistent "$PATH_/minirt26.gz" ; then
130      echo
131      echo "$PATH_/minirt26.gz exists already, skipping initrd creation"
132      return 0
133   fi
134
135   if [ -e '/live/cow' ]; then
136     mkInitrdNew
137   else
138     mkInitrd
139   fi
140   echo done
141 }
142
143 function mkInitrdNew
144 {
145   set -e
146   local cfg_="/etc/initramfs-tools/initramfs.conf"
147   local tmp_="`mktemp -t terminalserver__initramfsbk.XXXXXX`"
148   cp $cfg_ $tmp_
149   sed -i 's/^MODULES=.*/MODULES=netboot/' $cfg_
150   update-initramfs -u -t 1>/dev/null
151   mv $tmp_ $cfg_
152
153   local initrd_="/boot/initrd.img-$KERNEL_VERSION_"
154   mv $initrd_ $PATH_/minirt26.gz
155   mv ${initrd_}.bak $initrd_
156   set +e
157 }
158
159 function mkInitrd
160 {
161   TMP_DIR_=`mktemp -td terminalserver_initrd.XXXXXX`
162   local i=''
163   local tmp_loopname=''
164
165   # copying original initrd into $INITRD
166   execute "rm -r $INITRD_" 2>/dev/null
167   execute "cp $ORIGINAL_INITRD_ $TMP_DIR_/minirt26.gz" warn || return 1
168   execute "mkdir -p $INITRD_" warn || return 1
169   execute "mkdir -p $PATH_/mini-root.orig" warn || return 1
170   execute "gunzip $TMP_DIR_/minirt26.gz" warn || return 1
171   tmp_loopname=`findNextFreeLoop die`
172   execute "mount -o loop=$tmp_loopname $TMP_DIR_/minirt26 $PATH_/mini-root.orig " warn || return 1
173   execute "cp -a $PATH_/mini-root.orig/* $INITRD_" warn || return 1
174   execute "umount $PATH_/mini-root.orig" warn || return 1
175   losetup -d $tmp_loopname &>/dev/null
176   tmp_loopname=''
177   execute "rmdir $PATH_/mini-root.orig" warn || return 1
178   execute "rm $TMP_DIR_/minirt26" warn || return 1
179
180   # implanting my initrd changes into the original initrd
181
182   # copy programs, check if there are already links with this name to busybox
183   for i in $USR_SHARE_/timeout $USR_SHARE_/udhcp-config.sh $USR_SHARE_/cdir $USR_SHARE_/rdir; do
184     tmp_name_="${i##*/}"
185     isNotExistent "$INITRD_/static/$tmp_name_" eprint || execute "rm $INITRD_/static/$tmp_name_"
186     cp $i "$INITRD_/static/$tmp_name_"
187   done
188   cp $USR_SHARE_/linuxrc $INITRD_/
189   mkdir -p $INITRD_/mylib
190   mkdir -p $INITRD_/myusr
191
192   #
193   # which modules should i put into the ramdisk
194   #
195
196   # find *all* network drivers, but do not include wlan/pcmcia/... related ones
197   # blacklist: proteon and depca as they seem to cause problems with udevsettle
198   find ${MODULES_PATH_}/${KERNEL_VERSION_}/kernel/drivers/net/ -name \*.ko | \
199     grep -v 'wireless\|wan\|hamradio\|wlan\|ppp\|irda\|pcmcia\|depca\|proteon' | \
200       sed 's#.*./## ; s#\.ko##' | sort | uniq > $CARDS_DETECTED_BY_DISCOVER
201
202   local modules="`cat $CARDS_DETECTED_BY_DISCOVER |xargs` af_packet"
203   local modules_dep=""
204
205   # get paths of modules + paths of all dependent modules
206   echo -n "" >"$TMP_"
207   for i in $modules; do
208     tmp_=`awk -F: '{if($1~/'"$i".ko'/) {print $0}}' $MODULES_PATH_/$KERNEL_VERSION_/modules.dep`
209     echo "${tmp_%%:*}"
210     # FIXME ugly sed hack :(
211     echo "${tmp_#*:}" | xargs -n1 echo | sed 's/://'
212   done \
213   | sort | uniq | while read module relax; do
214     if [ -n "$module" ]; then
215       echo "$module" >> $TMP_
216     fi
217   done
218
219   # copy modules + dependend modules into ramdisk
220   local mod_path_="$INITRD_/mylib/modules/$KERNEL_VERSION_"
221   local tmp_dst_path_="$mod_path_/kernel"
222   mkdir -p $tmp_dst_path_
223   cat $TMP_ |sort |uniq |while read module; do
224     local tmp_path=${module#*/kernel/}
225     tmp_path=$tmp_dst_path_/${tmp_path%/*.ko}
226     local module_path=$tmp_path/${module##/*/}
227
228     isNotExistent "$tmp_path" dprint && mkdir -p "$tmp_path"
229     isNotExistent "$module_path" dprint && cp "$MODULES_PATH_ROOT_DIFF_/$module" "$module_path"
230   done
231
232   # copying additional modules
233   for i in fs/nfs/nfs.ko net/sunrpc/sunrpc.ko fs/lockd/lockd.ko net/packet/af_packet.ko; do
234     local tmp_path="$tmp_dst_path_/${i%/*}"
235     mkdir -p $tmp_path
236     cp $MODULES_PATH_/$KERNEL_VERSION_/kernel/$i "$tmp_path"
237   done
238
239   # copying modules.*
240   cp $MODULES_PATH_/$KERNEL_VERSION_/modules.dep $mod_path_
241   cp $MODULES_PATH_/$KERNEL_VERSION_/modules.alias $mod_path_
242   #grep "^\/lib\/modules\/$KERNEL_VERSION_\/kernel\/" $MODULES_PATH_/$KERNEL_VERSION_/modules.dep |\
243   #  sed "s/\/lib\/modules\/$KERNEL_VERSION_\/kernel\//\/modules\//g" > $mod_path_/modules.dep
244
245   # put everything into the new initrd
246   local tmp_size=`du -s $INITRD_ |awk '{print $1}'`   # in kB
247   let tmp_size=$tmp_size+1000
248   local max_size=24000
249   if (( $tmp_size >= $max_size )); then
250     warn "Your initrd is $tmp_size kByte large => TOO BIG (should be <= ${max_size}kB)"
251     warn "Please remove a few modules from $CARDS_DETECTED_BY_DISCOVER or edit $INITRD_ manually"
252     return 1
253   fi
254
255   execute "dd if=/dev/zero of=$TMP_DIR_/minirt26 bs=${tmp_size}k count=1 &>/dev/null" warn || \
256     warn "could not create filesystem image"
257
258   tmp_loopname=`findNextFreeLoop die`
259   execute "losetup $tmp_loopname $TMP_DIR_/minirt26" die
260   execute "mke2fs -L \"GRML NETINIT\" -b 1024 -N 8192 -O none -F -q -m 0 $tmp_loopname" warn
261
262   execute "mkdir $PATH_/minirt26_mountp" warn
263   execute "mount $tmp_loopname $PATH_/minirt26_mountp" warn
264   execute "cp -a $INITRD_/* $PATH_/minirt26_mountp" warn
265   execute "umount $PATH_/minirt26_mountp" warn
266   execute "losetup -d $tmp_loopname &>/dev/null" warn
267   execute "rmdir $PATH_/minirt26_mountp" warn
268   execute "gzip -9 $TMP_DIR_/minirt26" warn
269   execute "rm -r $INITRD_" warn
270   execute "mv $TMP_DIR_/minirt26.gz $PATH_"
271   execute "rm -fr $TMP_DIR_"
272 }
273 # }}}
274
275
276 # INTERACTIVE CONFIGURATION  {{{
277
278 function actionInteractive
279 {
280   local i=""
281
282   dprint "running in interactive mode"
283
284   local card_title_="Choose network device connected to client network"
285   local card_message_="Available network devices:"
286   local iprange_title_="IP Address range for clients"
287 local iprange_message_="
288 Please enter the desired IP-Range of addresses that should be allocated by clients, separated by a single space.
289
290 Example:
291           192.168.0.101 192.168.0.200
292
293 for addresses from 192.168.0.101 to (and including) 192.168.0.200.
294
295 "
296   local runconfig_title_="Networkcard config"
297   local runconfig_message_="Would you like to configure your interfaces now?"
298   local grub_title_="Grub configuration"
299   local grub_message_="Do you have any NON-PXE network cards you would like to boot from?"
300
301   # on witch interfaces should we listen
302   local netdevices_="$(grep -ve 'lo:' -ve 'Inter-|' -ve 'face |bytes' /proc/net/dev | awk -F: '{print $1}')"
303   local device_list_=""
304   for INTERFACE_ in $netdevices_; do device_list_="$device_list_ ${INTERFACE_} Networkcard_${INTERFACE_##eth}"; done
305     echo -n "" >"$TMP_"
306     $DIALOG_ --backtitle "$BACK_TITLE_" --title "$card_title_" --menu "$card_message_" \
307       0 0 18 $device_list_ 2>"$TMP_" || warn "could not get network-interface"
308   INTERFACE_="$(<$TMP_)" ; echo -n "" >"$TMP_"
309
310   while true; do
311     IP_=`netGetIp "$INTERFACE_" warn`
312     NETMASK_=`netGetNetmask "$INTERFACE_" warn`
313     netValidIp "$IP_" warn && break
314     $DIALOG_ --backtitle "$BACK_TITLE_" --title "$runconfig_title_" --yesno "$runconfig_message_" 18 45 && \
315       netcardconfig || die "Could not get interface" $?
316   done
317
318   IPRANGE_FROM_=`execute "ipcalc -nb $IP_/$NETMASK_" warn |awk '/HostMin/{print $2}'`
319   IPRANGE_TO_=`execute "ipcalc -nb $IP_/$NETMASK_" warn |awk '/HostMax/{print $2}'`
320   NETWORK_=`execute "ipcalc -nb $IP_/$NETMASK_" warn |awk '/Network:/{print $2}'`
321   NETWORK_=${NETWORK_%/*}
322   local iprange_=""
323   while [ -z "$IPRANGE_FROM_" -o -z "$IPRANGE_TO_" -o -z "$iprange_" ]; do
324     iprange_="$IPRANGE_FROM_ $IPRANGE_TO_"
325     echo -n "" >"$TMP_"
326     $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "$iprange_title_ ($INTERFACE_=$IP_/$NETMASK_)" \
327       --inputbox "$iprange_message_" 18 75 "$iprange_" 2>"$TMP_" || die "problems getting network range" $?
328
329     iprange_="$(<$TMP_)"
330     IPRANGE_FROM_="${iprange_%% *}"
331     IPRANGE_TO_="${iprange_##* }"
332
333     for i in "$IPRANGE_FROM_" "$IPRANGE_TO_"; do
334       netValidIp "$i" warn || iprange_=""
335     done
336   done
337
338   NAMESERVERS_=`netGetNameservers warn`
339   GW_=`netGetDefaultGateway warn`
340   GW_DEV_=`/sbin/ip route get "$GW_" | awk '{ print $3; exit; }'`
341   if [ "$GW_DEV_" != "$INTERFACE_" ] && [ "$GW_DEV_" != "" ]; then
342     # GW_DEV_ of server is not the same device as the one serviced by dhcpd
343     # so it doesn't make sense to provide the GW_ address to the clients
344     local do_nat_="YES"
345     local do_nat_title_="Network Address Translation"
346     local do_nat_message_="
347 Do you want to set up NAT so that clients booting from this
348 grml-terminalserver can use this machine also as gateway to
349 the internet?"
350
351     $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "$do_nat_title_" --yesno "$do_nat_message_" 15 75 || \
352       do_nat_="NO"
353     if [ "$do_nat_" = "YES" ]; then
354       # user wants NAT, we give the clients the server address as
355       # gateway as well
356       GW_="$IP_"
357       NAT_INTERFACE_="$GW_DEV_"
358     else
359       # no NAT, no sensible gateway
360       GW_=""
361       NAT_INTERFACE_=""
362     fi
363   fi
364
365
366   # grub
367   echo -n "" >"$TMP_"
368   local grub_write_="YES"
369   $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "$grub_title_" --yesno "$grub_message_" 5 75 && \
370     grubConfig || grub_write_="NO"
371
372
373   # get options
374   #local OPT_IPTABLES_="yes"
375   #local OPT_SSH_="yes"
376   #local OPT_DISTCC_="yes"
377   #local OPT_SQUID_=""
378
379   local OPTIONS_TITLE_="Options"
380   local OPTIONS_MESSAGE_="Please give the appropriate options you want the clients to use:
381
382 grml2hd   - Make a non-interactive remote installation
383
384
385
386 "
387 #  local OPTIONS_MESSAGE_="Please give the appropriate options you want the clients to use:
388 #
389 #iptables  - Only the server should be able to access the clients
390 #ssh       - A ssh-key will be created on the server and distributed to the clients
391 #distcc    - You want to use the clients as compile-farm (ssh options recommned)
392 #
393 #"
394
395   local OPT_IPTABLES_DESC_="Start iptables on the clients"
396   local OPT_SSH_DESC_="Start ssh on the clients"
397   local OPT_DISTCC_DESC_="Start distcc on the clients"
398   local OPT_GRML2HD_DESC_="Remote install grml on the network clients"
399   # dialog options (enable if implemented)
400   #iptables "$OPT_IPTABLES_DESC_" off \
401   #ssh "$OPT_SSH_DESC_" off \
402   #distcc "$OPT_DISTCC_DESC_" off \
403   echo -n "" >"$TMP_"
404   $DIALOG_ --clear --separate-output --backtitle "$BACK_TITLE_" --title "$OPTIONS_TITLE_" --checklist "$OPTIONS_MESSAGE_" 25 80 10 \
405   grml2hd "$OPT_GRML2HD_DESC_" off \
406     2>$TMP_ || die "could not get terminalserver options" $?
407   while read tmp_option_; do
408     OPTIONS_="$OPTIONS_ $tmp_option_"
409   done <$TMP_
410
411   # parse options
412   for i in $OPTIONS_; do
413     case "$i" in
414       grml2hd)  optGrml2Hd || return 1 ;;
415     esac
416   done
417
418   echo -n "" >"$TMP_"
419   local OPTIONS_BOOTARG_MESSAGE_="Here you can add additional boot arguments for the clients seperated by spaces:
420
421 Quite usefull examples:
422
423 ssh=<pw>              - Start ssh server and set password of user grml to pw
424 services=<1,2,3>      - Execute /etc/init.d/{1,2,3} start
425 console=ttyS0,9600n8  - Initialise serial console
426 startx                - Boot into X
427
428
429 "
430   $DIALOG_ --clear --no-collapse --backtitle "$BACK_TITLE_" --title "$OPTIONS_TITLE_" --inputbox "$OPTIONS_BOOTARG_MESSAGE_" 0 0\
431     2>$TMP_ || die "problems getting additional boot arguments"
432   BOOT_ARGS_="$BOOT_ARGS_ $(<$TMP_)"
433
434   writeConfig
435   if [ $grub_write_ == "YES" ]; then
436     grubWrite
437   fi
438   actionMkInitrd
439   notice "GRML terminalserver successfully configured"
440 }
441 # }}}
442
443 # OPTIONS GETTING DIALOG {{{
444 function optGrml2Hd
445 {
446   local GRML2HD_TITLE_='Grml2hd options dialog'
447   local tmp_=''
448   local options_='BOOT_IMAGE=grml2hd'
449
450   # get partition to install grml2hd on
451   OPTIONS_PARTITION_MSG_='Please give me the target partition where to install grml'
452   PARTITION_TITLE_='Partition selection'
453   echo -n "" >"$TMP_"
454   $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "$PARTITION_TITLE_" --inputbox \
455     "$OPTIONS_PARTITION_MSG_" 0 75 '/dev/hda1' 2>$TMP_ || die "problems getting partition"
456   tmp_="partition=$(<$TMP_)"
457   options_="$options_ $tmp_"
458
459   # get filesystem type
460   OPTION_FS_TYPE_='Please give me the filesystem type'
461   FS_TITLE_='Filesystem selection'
462   echo -n "" >"$TMP_"
463   $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "$FS_TITLE_" --inputbox \
464   "$OPTION_FS_TYPE_" 0 75 'ext3' 2>$TMP_ || die "problems getting filesystem type"
465   tmp_="filesystem=$(<$TMP_)"
466   options_="$options_ $tmp_"
467
468   # get where to save mbr
469   OPTION_MBR_='Please give me the location where to save the mbr'
470   MBR_TITLE_='Select location of mbr'
471   echo -n "" >"$TMP_"
472   $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "$MBR_TITLE_" --inputbox \
473     "$OPTION_MBR_" 0 75 '/dev/hda' 2>$TMP_ || die "problems getting location where to write mbr"
474   tmp_="mbr=$(<$TMP_)"
475   options_="$options_ $tmp_"
476
477   # get first user
478   OPTION_USER_='Who should be the first user on the system'
479   USER_TITLE_='User selection'
480   echo -n "" >"$TMP_"
481   $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "$USER_TITLE_" --inputbox \
482     "$OPTION_USER_" 0 75 'grml' 2>$TMP_ || die "problems getting first user of system"
483   tmp_="user=$(<$TMP_)"
484   options_="$options_ $tmp_"
485
486   BOOT_ARGS_="$options_"
487 }
488 #}}}
489
490 # GRUB CONFIG  {{{
491 function grubConfig
492 {
493   local tmp_=`mktemp -td terminalserver_grub.XXXXXX` || warn "could not create tmp file for grubConfig"
494   if [ -z "$tmp_" ]; then return 1; fi
495
496   grubConfigWork "$tmp_" "$1"
497   local ret_=$?
498   execute "rm -rf $tmp_" warn
499
500   return $ret_
501 }
502
503 function grubConfigWork
504 {
505   local tmp_="$1"
506
507   local grub_title_="Grub configuration"
508   local grub_nic_message_="
509 Please select the types of network cards you want to boot from.
510 If your networkcard is already listed just press <OK>!
511
512 WARNING: Do NOT add all NICs, grub could possibly stop working!"
513   local nics_=""
514
515   if [[ $2 == "" ]]; then
516     while read module_ desc_ mode_; do
517       nics_="$nics_ $module_ $desc_ $mode_"
518     done < $GRUB_NIC_CONF_
519
520     echo -n "" >$TMP_
521     local cmd_line_=""
522     $DIALOG_ --clear --separate-output --backtitle "$BACK_TITLE_" --title "$grub_title_" --checklist \
523       "$grub_nic_message_" 10 70 0 $nics_ 2>$TMP_
524     local ret_=$?
525     if [[ $ret_ -ne 0 ]]; then
526        die "exiting as requested"
527     fi
528     if [[ `wc -l <$TMP_` -eq 0 ]]; then
529       echo $ret_
530       warn "you should give me your specified NICs but didn't => DEFAULT will be used"
531       awk '/ on$/{print $1}' $GRUB_NIC_CONF_ >$TMP_
532     fi
533   else
534     cat $2 >$TMP_
535   fi
536   while read module_; do
537     cmd_line_="$cmd_line_ --enable-$module_"
538   done < $TMP_
539
540   echo "\"$cmd_line_\""
541
542   execute "tar xzf $GRUB_SOURCE_ -C $tmp_" warn || return 1
543   execute "cd $tmp_/grub*" warn || return 1
544 cat >preset-menu <<EOT
545 # Set up the serial terminal, first of all.
546 #serial --unit=0 --speed=19200
547 #terminal --timeout=0 serial
548
549 # Initialize the network.
550 #dhcp --with-configfile
551 #bootp --with-configfile
552 dhcp
553 default 0
554 timeout 0
555 title Load config from Tftp server
556   configfile (nd)/menu.lst
557 EOT
558
559   CC='gcc'
560   test -r /lib64 && export CC="$CC -m32"
561
562   CC="$CC" execute "./configure --enable-preset-menu=./preset-menu $cmd_line_" warn || read
563   CC="$CC" execute "make -j2" warn || read #return 1
564
565   local st1_="stage1/stage1"
566   local st2_="stage2/stage2"
567   isExistent $st1_ warn || return 1
568   isExistent $st2_ warn || return 1
569
570   if [ -r "$PATH_/grub.img" ] ; then
571      execute "mv -fb $PATH_/grub.img $PATH_/grub.img.old"
572   fi
573
574   execute "cat $st1_ $st2_ > $PATH_/grub.img" warn || return 1
575
576   return 0
577 }
578
579 function grubWrite
580 {
581   local grub_title_="Grub configuration"
582   $DIALOG_ --clear --backtitle "$BACK_TITLE_" --title "$grub_title_" --yesno \
583     "Do you want to write your grub image to /dev/fd0" 5 75 || return 1
584
585   execute "dd if=$PATH_/grub.img of=/dev/fd0" warn || return 0
586   return 1
587 }
588
589 function grubMultiWrite
590 {
591   local target_=${1:-'/dev/fd0'}
592
593   isExistent "$PATH_/grub.img" die "you must give me an image or run \"$PROG_NAME__ grubconf\""
594   isExistent "$target_" die "$target_ is not a valied"
595   while true; do
596     echo -n "Please insert disk into $target_ and press <ENTER> (STRG-C for end)"
597     read
598     dd if=$PATH_/grub.img of="$target_"
599   done
600 }
601 # }}}
602
603
604 function removeTmpFiles
605 {
606   execute "rm -f $TMP_" warn
607 }
608
609 function actionClean
610 {
611   for i in dhcpd.conf grub.img minirt26.gz; do
612     execute "rm -f $PATH_/$i*"
613   done
614
615   for i in $CARDS_DETECTED_BY_DISCOVER $CONF_FILE_; do
616     execute "rm -f $i"
617   done
618
619 }
620
621
622 ###
623 ### __MAIN
624 ###
625
626 while getopts "i:hv" opt; do
627   case "$opt" in
628     i) interface_=$OPTARG ;;
629     h) printUsage; exit ;;
630     v) let verbose_=$verbose_+1 ;;
631     ?) printUsage; exit 64 ;;
632   esac
633 done
634 shift $(($OPTIND - 1))  # set ARGV to the first not parsed commandline parameter
635 setVerbose $verbose_
636
637 case "$1" in
638   help)   printUsage; exit 0 ;;
639 esac
640
641 checkRoot die 'You have to be root to use this program'
642 disableSyslog
643
644 execute "mkdir -p $PATH_" die
645
646 TMP_=`mktemp -t grml-terminalserver-config.XXXXXX` || die "Could not create tmpfile" $?
647 setExitFunction 'removeTmpFiles'
648
649
650 . $DEFAULT_CONFIG_
651 . $CONFIG_
652 # used config vars:
653 # MODULES_PATH_
654 # MODULES_PATH_ROOT_DIFF_
655 # KERNEL_VERSION_
656 # ORIGINAL_INITRD_
657 if [[ $MODULES_PATH_ == "" || $KERNEL_VERSION_ == "" || $ORIGINAL_INITRD_ == "" ]]; then
658   warn "MODULES_PATH_=\"$MODULES_PATH_\" \
659 KERNEL_VERSION_=\"$KERNEL_VERSION_\" \
660 ORIGINAL_INITRD_=\"$ORIGINAL_INITRD_\""
661   die "False configuration, please update $CONFIG_"
662 fi
663
664
665 case "$1" in
666   interactive)  actionInteractive ;;
667   grubConf)   grubConfig "$2" ;;
668   grubConfWrite)  grubConfig && grubWrite ;;
669   grubWrite)    grubWrite ;;
670   grubMultiWrite)   grubMultiWrite "$2" ;;
671   initrd) actionMkInitrd ;;
672   clean)  actionClean ;;
673   *)    actionInteractive ;;
674 esac
675
676 removeTmpFiles
677 # END OF FILE
678 ################################################################################
679 # vim:foldmethod=marker tabstop=2 expandtab shiftwidth=2