home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / nwnet / install / postremove < prev    next >
Text File  |  1998-08-19  |  1KB  |  76 lines

  1. #ident    "@(#)postremove    1.5"
  2. #!/bin/sh
  3.  
  4. ADMINUSER=/usr/bin/adminuser
  5. SCOADMIN=/usr/bin/scoadmin
  6. GREP=/usr/bin/grep
  7.  
  8. #
  9. # remove changes to system files
  10. #
  11. sh /var/sadm/pkg/nwnet/install/nwservices remove > /tmp/nwservices
  12. cp /tmp/nwservices /etc/inet/services
  13. sh /var/sadm/pkg/nwnet/install/nwnetconfig remove > /tmp/nwnetconfig
  14. cp /tmp/nwnetconfig /etc/netconfig
  15.  
  16. #
  17. # remove the "/dev/NVT    MF" entry from /etc/ttysrch.
  18. #
  19. $GREP -v "/dev/NVT    MF" /etc/ttysrch >/tmp/$$.m1
  20. cp /tmp/$$.m1 /etc/ttysrch
  21. rm -f /tmp/$$.m1
  22.  
  23.  
  24. #
  25. #    Remove drivers
  26. #
  27. cd /etc/conf
  28.  
  29. for i in nspx ripx ipx nwip
  30. do
  31.     /etc/conf/bin/idinstall -d $i
  32. done
  33.  
  34. #
  35. #    Deconfigure nvt
  36. #
  37. /usr/sbin/sacadm -r -p nvt 2>/dev/null
  38. rm -fr /dev/NVT
  39.  
  40. #
  41. #    Remove /var netware directories
  42. #
  43. rm -fr /var/netware /var/spool/sap
  44.  
  45. #
  46. #    Remove .pid files
  47. #
  48. rm -f /etc/netware/*.pid
  49.  
  50. #
  51. #    Make sure pid files are gone
  52. #
  53. rm -f /etc/netware/*.pid
  54.  
  55. rm -rf /etc/nwipd.pid
  56. rm -rf /dev/lan0
  57.  
  58. /usr/sbin/netinfo -r -d nwip 
  59.  
  60. #
  61. # Update scoadmin NetWare folder
  62. #
  63.  
  64. if [ -x $SCOADMIN ]
  65. then
  66.     $SCOADMIN -p NetWare -d /usr/lib/scoadmin/NetWare/NetWare_Setup.obj
  67. fi
  68.  
  69. #
  70. # Remove tfadmin privileges
  71. #
  72.  
  73. $ADMINUSER -r NetWare_Setup root
  74.  
  75. exit 0
  76.