home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 Patches / 3.3_HP_SPARC_Patch1.pkg.tar / 3.3HPPASPARCPatch.pkg / 3.3HPPASPARCPatch.post_install < prev    next >
Text File  |  1995-06-02  |  256b  |  14 lines

  1. #!/bin/sh
  2.  
  3. Arch="hppa"
  4.  
  5. if [ $Arch = "`/usr/bin/arch`" ]
  6. then
  7.     /bin/echo "Installing booter for $Arch on root device..."
  8.     /etc/disk -b `df / | grep -v Filesystem | sed -e '1,$s?/dev/sd\(.\)a.*?/dev/rsd\1h?'`
  9.  
  10.     /bin/echo "Done Installing booter"
  11. fi
  12.  
  13. exit 0
  14.