home *** CD-ROM | disk | FTP | other *** search
/ ANews 2 / AnewsCD2.iso / LinuxPPC / Amiga / amigaos < prev    next >
Text File  |  1999-10-08  |  296b  |  15 lines

  1. #!/bin/sh
  2.  
  3. PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
  4.  
  5. # check that we are being run from the console
  6. if ! expr "`tty`" : '/dev/tty[0-9]$' >/dev/null; then
  7.   echo "Must be run from console"
  8.   exit 1
  9. fi
  10.  
  11. nvsetenv boot-device /AAPL,ROM
  12. nvsetenv real-base ffffffff
  13.  
  14. exec shutdown -t 1 -r now
  15.