home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume25 / smail-deliver.pch / X.install < prev    next >
Text File  |  1992-01-11  |  1KB  |  50 lines

  1. :
  2. # X.install
  3. #
  4. # Shell script to install smail in a Xenix System V system.
  5. #
  6. # Note that this script renames the standard Xenix rmail and execmail
  7. # programs to rmail.x and execmail.x respectively.  If those `.x' files
  8. # already exist, then no renaming takes place, so you can run this script
  9. # more than once without losing those renamed programs.
  10. #
  11. # BTW, be sure to test everything thoroughly; a broken mail system is
  12. # sure to upset any users on your system.
  13.  
  14. COPY="copy -m"
  15. SMAIL="/usr/bin/smail"
  16. RMAIL="/usr/bin/rmail"
  17. EXECM="/usr/lib/mail/execmail"
  18.  
  19. for f in smail execm
  20. do
  21.     if [ ! -x $f ]; then
  22.     echo "You need to compile $f first."
  23.     exit 1
  24.     fi
  25. done
  26.  
  27. echo "Installing current smail -- you have 5 seconds to abort."
  28. sleep 5
  29.  
  30. if [ ! -f $RMAIL.x ]; then
  31.     mv $RMAIL $RMAIL.x
  32. fi
  33. rm -f $RMAIL
  34. if [ ! -f $EXECM.x ]; then
  35.     mv $EXECM $EXECM.x
  36. fi
  37. rm -f $EXECM
  38.  
  39. $COPY execm $EXECM
  40. chown bin $EXECM
  41. chgrp bin $EXECM
  42. chmod 755 $EXECM
  43.  
  44. rm -f $SMAIL $RMAIL
  45. $COPY smail $SMAIL
  46. chown bin $SMAIL
  47. chgrp bin $SMAIL
  48. chmod 755 $SMAIL
  49. ln $SMAIL $RMAIL
  50.