home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / ROOT_GZ / root / etc / rc.d / rc.reboot < prev    next >
Encoding:
Text File  |  1995-06-12  |  299 b   |  16 lines

  1. #!/bin/sh
  2.  
  3. PATH=/bin:/sbin:/usr/bin:/usr/sbin
  4.  
  5. echo -e "\n\rkilling all processes...\n" >& /dev/console
  6. kill -15 -1
  7. sleep 2
  8. kill -9 -1
  9. echo -e "unmounting all filesystems...\n" >& /dev/console
  10. swapoff -a >& /dev/console
  11. umount -av >& /dev/console
  12. echo -e "syncing...\n" >& /dev/console
  13. sync
  14. reboot
  15.  
  16.