Fedora Remix maintained by the Rochester Institute of Technology (RIT) Linux Users Group, targeted at users new to Linux and RIT students, faculty, and staff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
3.2 KiB

  1. #!/bin/bash
  2. # TigerOS postinstall package setup script
  3. # author: Aidan Kahrs <axk4545@rit.edu>
  4. # Check that the current user is root
  5. if [ $EUID != 0 ]
  6. then
  7. echo "Please run this script as root ( $@$0)."
  8. exit
  9. fi
  10. echo -e "Welcome to the TigerOS post install script.\n
  11. This script will install a set of packages used for classes in your major."
  12. echo -e "\n"
  13. sleep 5;
  14. PS3='Please enter your major: '
  15. options=("CS" "IT/WMC" "NSSA/CIT" "SE" "Quit")
  16. select opt in "${options[@]}"
  17. do
  18. case $opt in
  19. "CS")
  20. echo -e "Welcome to the TigerOS CS package installer script.\n
  21. This script will install Intellij IDEA, PyCharm, PROLOG, Racket and JFLAP on your machine."
  22. while true; do
  23. read -p "Do you wish to continue? [y/n] " yn
  24. case $yn in
  25. [Yy]* ) break;;
  26. [Nn]* ) exit;;
  27. esac
  28. done
  29. ./cs/idea.sh
  30. # TODO Pycharm
  31. # TODO PROLOG
  32. # TODO Racket
  33. ./cs/jflap.sh
  34. ;;
  35. "IT/WMC")
  36. echo -e "Welcome to the TigerOS IT/WMC package installer script.
  37. This script will install mysql, mongodb, subversion, filezilla, nodejs and jGRASP on you machine."
  38. while true; do
  39. read -p "Do you wish to continue? [y/n] " yn
  40. case $yn in
  41. [Yy]* ) break;;
  42. [Nn]* ) exit;;
  43. esac
  44. done
  45. wget https://dev.mysql.com/get/mysql57-community-release-fc25-9.noarch.rpm -O mysql-repo.rpm
  46. dnf install -y mysql-repo.rpm
  47. dnf install -y mysql-community-server
  48. echo "mysql installed see "https://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/" step 4 for further instructions"
  49. dnf install -y mongodb
  50. semanage port -a -t mongod_port_t -p tcp 27017
  51. # dnf install -y httpd
  52. dnf install -y subversion filezilla nodejs php
  53. #call jGRASP script here
  54. mysql_secure_installation
  55. echo "Install finished"
  56. exit
  57. ;;
  58. "NSSA/CIT")
  59. echo -e "Welcome to the TigerOS NSSA/CIT package installer script.\n
  60. This script will install wireshark, python 2.7, python 3 and jGrasp on you machine."
  61. while true; do
  62. read -p "Do you wish to continue? [y/n] " yn
  63. case $yn in
  64. [Yy]* ) break;;
  65. [Nn]* ) exit;;
  66. esac
  67. done
  68. dnf install -y wireshark-gtk python python3
  69. #call jGrasp installer script here
  70. echo "Install finished"
  71. exit
  72. ;;
  73. "SE")
  74. echo -e "Welcome to the TigerOS SE package installer script.\n
  75. This script will install ruby, eclipse, Spin, sqlite3 and MIT Alloy on you machine."
  76. while true; do
  77. read -p "Do you wish to continue? [y/n] " yn
  78. case $yn in
  79. [Yy]* ) break;;
  80. [Nn]* ) exit;;
  81. esac
  82. done
  83. dnf install -y eclipse-jdt ruby sqlite
  84. ./se/spin.sh && ./se/alloy.sh
  85. echo "Install finished"
  86. exit
  87. ;;
  88. "Quit")
  89. break
  90. ;;
  91. *) echo invalid option;;
  92. esac
  93. done