home *** CD-ROM | disk | FTP | other *** search
/ Chip 1994 February / CHIP0294.ISO / digital / test / linux / bootdisk / rootdisk.18 / bin / setup < prev    next >
Encoding:
Text File  |  1994-06-09  |  889 b   |  34 lines

  1. . /LSTLIB/libLSTgeneral
  2.  
  3. if [ -f /LSTLIB/SETUP ]; then
  4.     echo "Warnung ! Setup darf nur einmal aufgerufen werden !"
  5.     rm -f /LSTLIB/SETUP
  6. fi
  7.  
  8. # We like logging things ;-)
  9. echo "$LOGNAME: Calling setup at `date` " >> $LSTTMP/install.log
  10.  
  11. # Everybody has to be asked for the keyboard
  12. if [ ! -f /tmp/kbdflag ]; then
  13.     $LSTLIB/AskKbd
  14. fi
  15.  
  16. # Zuerst Vorsorge fuer die armen 1.2 MB Floppy-Besitzer treffen
  17. if [ "$LOGNAME" = "minimal" ]; then
  18.      $LSTLIB/Smartprep_use
  19. fi
  20.  
  21. if [ "$LOGNAME" = "install" -o "$LOGNAME" = "expert" ]; then
  22.     # Now we can delete what we won't need during installation ;-)
  23.     echo "L÷sche nicht ben÷tigte Programme aus der RAMDISK ..."
  24.     not_use keyboard
  25.     not_use luxus
  26.     $LSTLIB/AskMedia
  27.     $LSTLIB/AskUsedialog
  28.     echo "Dekomprimiere die ben÷tigten Programme. Bitte warten ..."
  29.     prep_use minimum
  30.     prep_use phase1
  31. fi
  32.  
  33. echo "$LOGNAME: Sucessful setup at `date` " >> $LSTTMP/install.log
  34.