Browse Source

Fixed indentations.

website
Tim Zabel 7 years ago
parent
commit
90dd24805d
1 changed files with 20 additions and 20 deletions
  1. +20
    -20
      scripts/postinstall

+ 20
- 20
scripts/postinstall View File

@ -23,11 +23,11 @@ do
echo -e "Welcome to the TigerOS CS package installer script.\n echo -e "Welcome to the TigerOS CS package installer script.\n
This script will install Intellij IDEA, PyCharm, PROLOG, Racket, Logisim and JFLAP on your machine." This script will install Intellij IDEA, PyCharm, PROLOG, Racket, Logisim and JFLAP on your machine."
while true; do while true; do
read -p "Do you wish to continue? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
esac
read -p "Do you wish to continue? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
esac
done done
./cs/idea.sh ./cs/idea.sh
# TODO Pycharm # TODO Pycharm
@ -40,11 +40,11 @@ do
echo -e "Welcome to the TigerOS IT/WMC package installer script. echo -e "Welcome to the TigerOS IT/WMC package installer script.
This script will install mysql, mongodb, subversion, filezilla, nodejs and jGRASP on you machine." This script will install mysql, mongodb, subversion, filezilla, nodejs and jGRASP on you machine."
while true; do while true; do
read -p "Do you wish to continue? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
esac
read -p "Do you wish to continue? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
esac
done done
wget https://dev.mysql.com/get/mysql57-community-release-fc25-9.noarch.rpm -O mysql-repo.rpm wget https://dev.mysql.com/get/mysql57-community-release-fc25-9.noarch.rpm -O mysql-repo.rpm
dnf install -y mysql-repo.rpm dnf install -y mysql-repo.rpm
@ -62,11 +62,11 @@ do
echo -e "Welcome to the TigerOS NSSA/CIT package installer script.\n echo -e "Welcome to the TigerOS NSSA/CIT package installer script.\n
This script will install wireshark, python 2.7, python 3 and jGrasp on you machine." This script will install wireshark, python 2.7, python 3 and jGrasp on you machine."
while true; do while true; do
read -p "Do you wish to continue? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
esac
read -p "Do you wish to continue? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
esac
done done
dnf install -y wireshark-gtk python python3 dnf install -y wireshark-gtk python python3
groupadd wireshark groupadd wireshark
@ -79,11 +79,11 @@ do
echo -e "Welcome to the TigerOS SE package installer script.\n echo -e "Welcome to the TigerOS SE package installer script.\n
This script will install ruby, eclipse, Spin, sqlite3, plantUML, gitk and MIT Alloy on you machine." This script will install ruby, eclipse, Spin, sqlite3, plantUML, gitk and MIT Alloy on you machine."
while true; do while true; do
read -p "Do you wish to continue? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
esac
read -p "Do you wish to continue? [y/n] " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
esac
done done
dnf install -y eclipse-jdt ruby sqlite plantuml gitk geany dnf install -y eclipse-jdt ruby sqlite plantuml gitk geany
./se/spin.sh && ./se/alloy.sh ./se/spin.sh && ./se/alloy.sh

Loading…
Cancel
Save