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

  1. #ident    "@(#)pkg.arcdoc:postinstall    1.00"
  2.  
  3. # define install/error log files for this script
  4. LOGFILE=/var/adm/log/arcdocins.$$.log
  5. ERRFILE=/var/adm/log/arcdocins.$$.err
  6.  
  7. # ISL requires that output not go to the screen, so we need to determine
  8. # if we're being installed as part of ISL
  9. ISL_SCRIPT=/etc/inst/scripts/postreboot.sh
  10. POSTREBOOT_SCRIPT=/etc/rc2.d/S02POSTINST
  11. if [ \( -f ${ISL_SCRIPT} \) -o \( -f ${POSTREBOOT_SCRIPT} \) ] ; then
  12.     Screen_writable=false
  13.     . /isl/ifile
  14. else
  15.     Screen_writable=true
  16. fi
  17. # for debugging
  18. echo "Screen_writable=$Screen_writable" >> $LOGFILE 2>> $ERRFILE
  19.  
  20. # Run the odssi tools on the arcserve html doc
  21. # for debugging
  22. echo "config_help -L en_US.ISO8859-1" >> $LOGFILE 2>> $ERRFILE
  23. if [ "$Screen_writable" = "true" ] ; then
  24.     echo -n "Adding SCO ARCserve/Open help topics..."
  25. fi
  26. /usr/man/bin/config_help -L en_US.ISO8859-1 >> $LOGFILE 2>> $ERRFILE
  27. if [ "$Screen_writable" = "true" ] ; then
  28.     echo "done."
  29. fi
  30.  
  31. # Run the odssi tools on the arcserve man pages.
  32. # The "1" indicates that only man section 1 is affected
  33. # by the arcserve man pages.
  34. echo "config_man -L en_US.ISO8859-1 1" >> $LOGFILE 2>> $ERRFILE
  35. if [ "$Screen_writable" = "true" ] ; then            # not ISL
  36.     echo -n "Adding SCO ARCserve/Open manual pages..."
  37. fi
  38. /usr/man/bin/config_man -L en_US.ISO8859-1 1 >> $LOGFILE 2>> $ERRFILE
  39. if [ "$Screen_writable" = "true" ] ; then            # not ISL
  40.     echo "done."
  41. fi
  42.  
  43. # Run the odssi tools to create the arcserve topic view pages
  44. echo "config_views -L en_US.ISO8859-1" >> $LOGFILE 2>> $ERRFILE
  45. if [ "$Screen_writable" = "true" ] ; then
  46.     echo -n "Creating SCO ARCserve/Open topic view pages..."
  47. fi
  48. /usr/man/bin/config_views -L en_US.ISO8859-1 >> $LOGFILE 2>> $ERRFILE
  49. if [ "$Screen_writable" = "true" ] ; then
  50.     echo "done."
  51. fi
  52.  
  53. exit 0
  54.