home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / telecomm / n890421.zoo / install < prev    next >
Text File  |  1992-06-20  |  2KB  |  66 lines

  1. # for LINUX only !!!!
  2.  
  3.  
  4. #!/bin/sh
  5. if [ "$NET" = "" ]
  6. then
  7.     echo "The variable NET must be set to where you want the "
  8.     echo "KA9Q unix NET software to be installed."
  9.     echo "If you are using /bin/sh use the command set NET xxxxx"
  10.     echo "Where xxxxx is the directory path where the net software"
  11.     echo "installed.  If you are using /bin/csh use the command"
  12.     echo " setenv NET xxxxx"
  13.     echo ""
  14.     exit 1
  15. fi
  16. echo "The following directories and files will be created:"
  17. echo "     $NET/bin                         where the program is"
  18. echo "     $NET/public                      where transfer files are"
  19. echo "     $NET/bin/net                     the program"
  20. echo "     $NET/bin/net.debug               the program debug version"
  21. echo "     $NET/startup.net                 the startup file"
  22. echo "     $NET/finger/n6xjj.txt            a finger example file"
  23. echo "     $NET/hosts.net                   the hosts file for so. cal."
  24. echo "     $NET/ftpusers                    what users can ftp in"
  25. echo
  26.  
  27. if [ ! -d "$NET/bin" ]
  28. then
  29.     mkdir $NET/bin
  30. fi
  31. if [ ! -d "$NET/public" ]
  32. then
  33.     mkdir $NET/public
  34. fi
  35. if [ ! -d "$NET/finger" ]
  36. then
  37.     mkdir $NET/finger
  38. fi
  39. if [ ! -f "net.debug" ]
  40. then
  41.     make depend
  42. fi
  43. make 
  44.  
  45. echo 
  46. echo
  47. echo "Copying files into their correct locations"
  48.  
  49. cp net.debug $NET/bin
  50. cp net $NET/bin
  51. cp n6xjj.txt $NET/finger
  52. cp startup.net $NET
  53. cp hosts.net $NET
  54. cp ftpusers $NET
  55.  
  56. echo
  57. echo
  58. echo "The installation of KA9Q net software is complete"
  59. echo "Please edit the $NET/startup.net file for your configuration and"
  60. echo "Amateur call sign.  Edit ftpusers for your group of users, and"
  61. echo "move $NET/finger/n6xjj.txt into $NET/finger/yourcallsign.txt."
  62. echo "Contact a packet person in your area for your current hosts.net"
  63. echo "file.  "
  64.  
  65. exit 0
  66.