home *** CD-ROM | disk | FTP | other *** search
- umask 022
-
- if [ ! -f /bin/date -a -f /bin/date.gz ]; then
- gzip -d /bin/date.gz
- fi
-
- # Just to detect those who always tell you "I didn't do that" ;-)
- echo "$LOGNAME: logged in at `date` " >> /tmp/.loglogins 2>&1
-
- if [ ! -f /LSTLIB/SETUP ]; then
- echo "Rufe setup auf ..."
- setup
- fi
-
- if [ "$LOGNAME" = "install" -o "$LOGNAME" = "expert" ]; then
- # Newbie or expert who wants to install
- # read the setup ...
- . /LSTLIB/SETUP
- # and now call the installation procedure
- if [ "$LOGNAME" = "expert" ]; then
- EXPERT='-expert'
- fi
- doinstall $EXPERT $USEDIALOG
- exit
- else
- # Who is that ? root who wants to disturb us ? Warn him !
- echo
- echo "Wer sich als root einloggt sollte wissen, was er tut ;-)"
- echo
- fi
-