home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / ARCdoc / install / postremove < prev   
Text File  |  1998-08-19  |  786b  |  25 lines

  1. #ident    "@(#)pkg.arcdoc:postremove    1.00"
  2.  
  3. # Run the configuration routines for the arcserve online doc
  4. LOGFILE=/var/adm/log/arcdocrem.$$.log
  5. ERRFILE=/var/adm/log/arcdocrem.$$.err
  6.  
  7. # Run the odssi tools on the online (html) arcserve doc.
  8. echo -n "Removing SCO ARCserve/Open help files..."
  9. /usr/man/bin/config_help -n >> $LOGFILE 2>> $ERRFILE
  10. echo "done."
  11.  
  12. # Run the odssi tools on the arcserve man pages.
  13. # The "1" specifies that only man section 1 is affected by these
  14. # man pages.
  15. echo -n "Removing SCO ARCserve/Open manual pages..."
  16. /usr/man/bin/config_man 1 >> $LOGFILE 2>> $ERRFILE
  17. echo "done."
  18.  
  19. # Run the odssi tools to remove the arcserve topic view pages.
  20. echo -n "Removing SCO ARCserve/Open topic views..."
  21. /usr/man/bin/config_views >> $LOGFILE 2>> $ERRFILE
  22. echo "done."
  23.  
  24. exit 0
  25.