diff --git a/README.md b/README.md
index aeadf3a..69ea9ac 100644
--- a/README.md
+++ b/README.md
@@ -10,14 +10,10 @@ Discord group: https://revenact.io/discord
If you need me to help you fix or debug something, contact me via Telegram Secret Chat. - Please, please don't send me your server credentials via Discord.
-# Pterodactyl v1.0 Release Candidate
-Pterodactyl v1.0 will NOT be supported until it is ready for production.
-With that being said, you can still try out the v1.0 script version using:
-
-`bash <(curl -sSL https://raw.githubusercontent.com/tommytran732/Pterodactyl-Script/pterodactyl-1.0/install.sh)`
-
+# Now with extra Pterodactyl v1.0
+This Script now includes the new Pterodactyl v1.0 release
-A migration script from v0.7 to v1.0 will be available at a later date.
+This Script also includes a migration script for 0.7 to 1.0 and Daemon to Wings
# Supported Operating System
| Operating System | Version | Supported | Recommended | Notes |
diff --git a/install.sh b/install.sh
index 3a275f2..93c8ce4 100644
--- a/install.sh
+++ b/install.sh
@@ -42,9 +42,9 @@ preflight(){
apt-get -y install virt-what curl
elif [ "$lsb_dist" = "debian" ]; then
apt update --fix-missing
- apt-get -y install software-properties-common virt-what wget curl
+ apt-get -y install software-properties-common virt-what wget curl dnsutils
elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
- yum -y install virt-what wget
+ yum -y install virt-what wget bind-utils
fi
virt_serv=$(echo $(virt-what))
if [ "$virt_serv" = "" ]; then
@@ -155,67 +155,96 @@ os_check(){
}
install_options(){
+ warn "INSTALLING 1.0.1 WITH NGINX IS BROKEN AS OF THIS TIME ALSO WITH WINGS YOU NEED THE CONFIG FROM YOUR PANEL IN /etc/pterodactyl/config.yml"
output "Please select your installation option:"
- output "[1] Install the panel."
- output "[2] Install the daemon."
- output "[3] Install the panel and daemon."
- output "[4] Install the standalone SFTP server."
- output "[5] Upgrade 0.7.x panel to 0.7.19."
- output "[6] Upgrade 0.6.x daemon to 0.6.13."
- output "[7] Upgrade the panel to 0.7.19 and daemon to 0.6.13"
- output "[8] Upgrade the standalone SFTP server to 1.0.5."
- output "[9] Make Pterodactyl compatible with the mobile app (only use this after you have installed the panel - check out https://pterodactyl.cloud for more information)."
- output "[10] Update mobile compatibility."
- output "[11] Install or update to phpMyAdmin 5.0.2 (only use this after you have installed the panel)."
- output "[12] Install a standalone database host (only for use on daemon-only installations)."
- output "[13] Change Pterodactyl theme."
- output "[14] Emergency MariaDB root password reset."
- output "[15] Emergency database host information reset."
+ output "[1] Install the panel (1.0.1)."
+ output "[2] Install the panel (0.7.19)."
+ output "[3] Install the wings."
+ output "[4] Install the daemon."
+ output "[5] Install the (1.0.1) panel and wings."
+ output "[6] Install the (0.7.19) panel and daemon."
+ output "[7] Install the standalone SFTP server."
+ output "[8] Upgrade (1.0) panel to (1.0.1)."
+ output "[9] Upgrade (0.7.x) panel to (1.0.1)."
+ output "[10] Upgrade (0.7.x) panel to (0.7.19)."
+ output "[11] Upgrade (0.6.x) daemon to (0.6.13)."
+ output "[12] Migrating daemon to wings."
+ output "[13] Upgrade the panel to 1.0.1 and Migrate to wings"
+ output "[14] Upgrade the panel to 0.7.19 and daemon to (0.6.13)"
+ output "[15] Upgrade the standalone SFTP server to (1.0.5)."
+ output "[16] Make Pterodactyl compatible with the mobile app (only use this after you have installed the panel - check out https://pterodactyl.cloud for more information)."
+ output "[17] Update mobile compatibility."
+ output "[18] Install or update to phpMyAdmin (5.0.2) (only use this after you have installed the panel)."
+ output "[19] Install a standalone database host (only for use on daemon-only installations)."
+ output "[20] Change Pterodactyl theme (0.7.19 Only)."
+ output "[21] Emergency MariaDB root password reset."
+ output "[22] Emergency database host information reset."
read choice
case $choice in
1 ) installoption=1
- output "You have selected panel installation only."
+ output "You have selected 1.0.1 panel installation only."
;;
2 ) installoption=2
- output "You have selected daemon installation only."
+ output "You have selected 0.7.19 panel installation only."
;;
3 ) installoption=3
- output "You have selected panel and daemon installation."
+ output "You have selected wings installation only."
;;
4 ) installoption=4
- output "You have selected to install the standalone SFTP server."
+ output "You have selected daemon installation only."
;;
5 ) installoption=5
- output "You have selected to upgrade the panel."
+ output "You have selected 1.0.1 panel and wings installation."
;;
6 ) installoption=6
- output "You have selected to upgrade the daemon."
+ output "You have selected 0.7.19 panel and daemon installation."
;;
7 ) installoption=7
- output "You have selected to upgrade both the panel and daemon."
+ output "You have selected to install the standalone SFTP server."
;;
8 ) installoption=8
- output "You have selected to upgrade the standalone SFTP."
+ output "You have selected to upgrade the panel to 1.0.1."
;;
9 ) installoption=9
- output "You have activated mobile app compatibility."
+ output "You have selected to upgrade the panel to 1.0.1."
;;
10 ) installoption=10
- output "You have selected to update the mobile app compatibility."
+ output "You have selected to upgrade the panel to 0.7.19."
;;
11 ) installoption=11
- output "You have selected to install or update phpMyAdmin."
+ output "You have selected to upgrade the daemon to 0.6.13."
;;
12 ) installoption=12
- output "You have selected to install a Database host."
+ output "You have selected to migrate daemon to wings."
;;
13 ) installoption=13
- output "You have selected to change Pterodactyl's theme."
+ output "You have selected to upgrade both the panel to 1.0.1 and migrating to wings."
;;
14 ) installoption=14
- output "You have selected MariaDB root password reset."
+ output "You have selected to upgrade both the panel to 0.7.19 and daemon to 0.6.13."
;;
15 ) installoption=15
+ output "You have selected to upgrade the standalone SFTP."
+ ;;
+ 16 ) installoption=16
+ output "You have activated mobile app compatibility."
+ ;;
+ 17 ) installoption=17
+ output "You have selected to update the mobile app compatibility."
+ ;;
+ 18 ) installoption=18
+ output "You have selected to install or update phpMyAdmin."
+ ;;
+ 19 ) installoption=19
+ output "You have selected to install a Database host."
+ ;;
+ 20 ) installoption=20
+ output "You have selected to change Pterodactyl's 0.7.19 only."
+ ;;
+ 21 ) installoption=21
+ output "You have selected MariaDB root password reset."
+ ;;
+ 22 ) installoption=22
output "You have selected Database Host information reset."
;;
* ) output "You did not enter a valid selection."
@@ -287,15 +316,15 @@ theme_options() {
8 ) themeoption=8
output "You have selected to install Fonix's BlackEnd Space theme."
output ""
- ;;
+ ;;
9 ) themeoption=9
output "You have selected to install Fonix's Nothing But Graphite theme."
output ""
- ;;
+ ;;
* ) output "You did not enter a valid selection."
theme_options
esac
-}
+}
required_infos() {
output "Please enter the desired user email address:"
@@ -349,6 +378,109 @@ theme() {
}
repositories_setup(){
+ output "Configuring your repositories..."
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ apt-get -y install sudo
+ apt-get -y install software-properties-common curl apt-transport-https ca-certificates gnupg
+ dpkg --remove-architecture i386
+ echo 'Acquire::ForceIPv4 "true";' | sudo tee /etc/apt/apt.conf.d/99force-ipv4
+ apt-get -y update
+ curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash
+ if [ "$lsb_dist" = "ubuntu" ]; then
+ LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
+ add-apt-repository -y ppa:chris-lea/redis-server
+ if [ "$dist_version" != "20.04" ]; then
+ add-apt-repository -y ppa:certbot/certbot
+ add-apt-repository -y ppa:nginx/development
+ fi
+ apt -y install tuned dnsutils
+ tuned-adm profile latency-performance
+ elif [ "$lsb_dist" = "debian" ]; then
+ apt-get -y install ca-certificates apt-transport-https
+ echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php.list
+ if [ "$dist_version" = "10" ]; then
+ apt -y install dirmngr
+ wget -q https://packages.sury.org/php/apt.gpg -O- | sudo apt-key add -
+ sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
+ apt -y install tuned
+ tuned-adm profile latency-performance
+ elif [ "$dist_version" = "9" ]; then
+ apt -y install dirmngr
+ wget -q https://packages.sury.org/php/apt.gpg -O- | sudo apt-key add -
+ sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
+ fi
+ fi
+ apt-get -y update
+ apt-get -y upgrade
+ apt-get -y autoremove
+ apt-get -y autoclean
+ apt-get -y install curl
+ elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ]; then
+ if [ "$lsb_dist" = "fedora" ] ; then
+ if [ "$dist_version" = "32" ]; then
+ dnf -y install http://rpms.remirepo.net/fedora/remi-release-32.rpm
+ elif [ "$dist_version" = "31" ]; then
+ dnf -y install http://rpms.remirepo.net/fedora/remi-release-31.rpm
+ fi
+ dnf -y install dnf-plugins-core python2 libsemanage-devel
+ dnf config-manager --set-enabled remi
+ dnf -y module enable php:remi-7.4
+ dnf -y module enable nginx:mainline/common
+ dnf -y module enable mariadb:14/server
+ elif [ "$lsb_dist" = "centos" ] && [ "$dist_version" = "8" ]; then
+ dnf -y install epel-release boost-program-options
+ dnf -y install http://rpms.remirepo.net/enterprise/remi-release-8.rpm
+ dnf config-manager --set-enabled remi
+ dnf -y module enable php:remi-7.4
+ dnf -y module enable nginx:mainline/common
+ curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash
+ dnf config-manager --set-enabled mariadb
+ elif [ "$lsb_dist" = "centos" ] && [ "$dist_version" = "7" ]; then
+
+ bash -c 'cat > /etc/yum.repos.d/nginx.repo' <<-'EOF'
+[nginx-mainline]
+name=nginx mainline repo
+baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
+gpgcheck=1
+enabled=0
+gpgkey=https://nginx.org/keys/nginx_signing.key
+module_hotfixes=true
+EOF
+ bash -c 'cat > /etc/yum.repos.d/mariadb.repo' <<-'EOF'
+[mariadb]
+name = MariaDB
+baseurl = http://yum.mariadb.org/10.5/centos7-amd64
+gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
+gpgcheck=1
+EOF
+
+ yum -y install epel-release
+ yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
+ yum -y install policycoreutils-python yum-utils libsemanage-devel
+ yum-config-manager --enable remi
+ yum-config-manager --enable remi-php74
+ yum-config-manager --enable nginx-mainline
+ yum-config-manager --enable mariadb
+ elif [ "$lsb_dist" = "rhel" ] && [ "$dist_version" = "8" ]; then
+ dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
+ dnf -y install boost-program-options
+ dnf -y install http://rpms.remirepo.net/enterprise/remi-release-8.rpm
+ dnf config-manager --set-enabled remi
+ dnf -y module enable php:remi-7.4
+ dnf -y module enable nginx:mainline/common
+ curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | sudo bash
+ dnf config-manager --set-enabled mariadb
+ fi
+ yum -y install yum-utils tuned
+ tuned-adm profile latency-performance
+ yum -y upgrade
+ yum -y autoremove
+ yum -y clean packages
+ yum -y install curl bind-utils cronie
+ fi
+}
+
+repositories_setup_0.7.19(){
output "Configuring your repositories..."
if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
apt-get -y install sudo
@@ -452,6 +584,68 @@ EOF
}
install_dependencies(){
+ output "Installing dependencies..."
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ if [ "$webserver" = "1" ]; then
+ apt -y install php7.4 php7.4-{cli,gd,mysql,pdo,mbstring,tokenizer,bcmath,xml,fpm,curl,zip} nginx tar unzip git redis-server nginx git wget expect
+ elif [ "$webserver" = "2" ]; then
+ apt -y install php7.4 php7.4-{cli,gd,mysql,pdo,mbstring,tokenizer,bcmath,xml,fpm,curl,zip} curl tar unzip git redis-server apache2 libapache2-mod-php7.4 redis-server git wget expect
+ fi
+ sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -y --allow-unauthenticated mariadb-server"
+ elif [ "$lsb_dist" = "centos" ] && [ "$dist_version" = "7" ]; then
+ if [ "$webserver" = "1" ]; then
+ yum -y install php php-common php-fpm php-cli php-json php-mysqlnd php-mcrypt php-gd php-mbstring php-pdo php-zip php-bcmath php-dom php-opcache MariaDB-server redis nginx git policycoreutils-python-utils unzip wget expect tar
+ elif [ "$webserver" = "2" ]; then
+ yum -y install php php-common php-fpm php-cli php-json php-mysqlnd php-mcrypt php-gd php-mbstring php-pdo php-zip php-bcmath php-dom php-opcache MariaDB-server redis httpd git policycoreutils-python-utils mod_ssl unzip wget expect tar
+ fi
+ else
+ if [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
+ if [ "$dist_version" = "8" ]; then
+ dnf -y install MariaDB-server MariaDB-client --disablerepo=AppStream
+ fi
+ else
+ dnf -y install MariaDB-server
+ fi
+ dnf -y module install php:remi-7.4
+ if [ "$webserver" = "1" ]; then
+ dnf -y install redis nginx git policycoreutils-python-utils unzip wget expect jq php-mysql php-zip php-bcmath tar
+ elif [ "$webserver" = "2" ]; then
+ dnf -y install redis httpd git policycoreutils-python-utils mod_ssl unzip wget expect jq php-mysql php-zip php-mcmath tar
+ fi
+ fi
+
+ output "Enabling Services..."
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ systemctl enable redis-server
+ service redis-server start
+ systemctl enable php7.4-fpm
+ service php7.4-fpm start
+ elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
+ systemctl enable redis
+ service redis start
+ systemctl enable php-fpm
+ service php-fpm start
+ fi
+
+ systemctl enable cron
+ systemctl enable mariadb
+
+ if [ "$webserver" = "1" ]; then
+ systemctl enable nginx
+ service nginx start
+ elif [ "$webserver" = "2" ]; then
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ systemctl enable apache2
+ service apache2 start
+ elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
+ systemctl enable httpd
+ service httpd start
+ fi
+ fi
+ service mysql start
+}
+
+install_dependencies_0.7.19(){
output "Installing dependencies..."
if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
if [ "$webserver" = "1" ]; then
@@ -531,6 +725,132 @@ install_pterodactyl() {
SQL="${Q0}${Q1}${Q2}${Q3}${Q4}${Q5}${Q6}${Q7}${Q8}${Q9}"
mysql -u root -e "$SQL"
+ output "Binding MariaDB/MySQL to 0.0.0.0."
+ if grep -Fqs "bind-address" /etc/mysql/mariadb.conf.d/50-server.cnf ; then
+ sed -i -- '/bind-address/s/#//g' /etc/mysql/mariadb.conf.d/50-server.cnf
+ sed -i -- '/bind-address/s/127.0.0.1/0.0.0.0/g' /etc/mysql/mariadb.conf.d/50-server.cnf
+ output 'Restarting MySQL process...'
+ service mysql restart
+ elif grep -Fqs "bind-address" /etc/mysql/my.cnf ; then
+ sed -i -- '/bind-address/s/#//g' /etc/mysql/my.cnf
+ sed -i -- '/bind-address/s/127.0.0.1/0.0.0.0/g' /etc/mysql/my.cnf
+ output 'Restarting MySQL process...'
+ service mysql restart
+ elif grep -Fqs "bind-address" /etc/my.cnf ; then
+ sed -i -- '/bind-address/s/#//g' /etc/my.cnf
+ sed -i -- '/bind-address/s/127.0.0.1/0.0.0.0/g' /etc/my.cnf
+ output 'Restarting MySQL process...'
+ service mysql restart
+ elif grep -Fqs "bind-address" /etc/mysql/my.conf.d/mysqld.cnf ; then
+ sed -i -- '/bind-address/s/#//g' /etc/mysql/my.conf.d/mysqld.cnf
+ sed -i -- '/bind-address/s/127.0.0.1/0.0.0.0/g' /etc/mysql/my.conf.d/mysqld.cnf
+ output 'Restarting MySQL process...'
+ service mysql restart
+ else
+ output 'A MySQL configuration file could not be detected! Please contact support.'
+ fi
+
+ output "Downloading Pterodactyl..."
+ mkdir -p /var/www/pterodactyl
+ cd /var/www/pterodactyl
+ curl -Lo panel.tar.gz https://github.com/pterodactyl/panel/releases/download/v1.0.1/panel.tar.gz
+ tar -xzvf panel.tar.gz
+ chmod -R 755 storage/* bootstrap/cache/
+
+ output "Installing Pterodactyl..."
+ curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
+ cp .env.example .env
+ /usr/local/bin/composer install --no-dev --optimize-autoloader
+ php artisan key:generate --force
+ php artisan p:environment:setup -n --author=$email --url=https://$FQDN --timezone=America/New_York --cache=redis --session=database --queue=redis --redis-host=127.0.0.1 --redis-pass= --redis-port=6379
+ php artisan p:environment:database --host=127.0.0.1 --port=3306 --database=panel --username=pterodactyl --password=$password
+ output "To use PHP's internal mail sending, select [mail]. To use a custom SMTP server, select [smtp]. TLS Encryption is recommended."
+ php artisan p:environment:mail
+ php artisan migrate --seed --force
+ php artisan p:user:make --email=$email --admin=1
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ chown -R www-data:www-data * /var/www/pterodactyl
+ elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
+ if [ "$webserver" = "1" ]; then
+ chown -R nginx:nginx * /var/www/pterodactyl
+ elif [ "$webserver" = "2" ]; then
+ chown -R apache:apache * /var/www/pterodactyl
+ fi
+ semanage fcontext -a -t httpd_sys_rw_content_t "/var/www/pterodactyl/storage(/.*)?"
+ restorecon -R /var/www/pterodactyl
+ fi
+
+ output "Creating panel queue listeners..."
+ (crontab -l ; echo "* * * * * php /var/www/pterodactyl/artisan schedule:run >> /dev/null 2>&1")| crontab -
+ service cron restart
+
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ cat > /etc/systemd/system/pteroq.service <<- 'EOF'
+[Unit]
+Description=Pterodactyl Queue Worker
+After=redis-server.service
+[Service]
+User=www-data
+Group=www-data
+Restart=always
+ExecStart=/usr/bin/php /var/www/pterodactyl/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
+[Install]
+WantedBy=multi-user.target
+EOF
+ elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
+ if [ "$webserver" = "1" ]; then
+ cat > /etc/systemd/system/pteroq.service <<- 'EOF'
+Description=Pterodactyl Queue Worker
+After=redis-server.service
+[Service]
+User=nginx
+Group=nginx
+Restart=always
+ExecStart=/usr/bin/php /var/www/pterodactyl/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
+[Install]
+WantedBy=multi-user.target
+EOF
+ elif [ "$webserver" = "2" ]; then
+ cat > /etc/systemd/system/pteroq.service <<- 'EOF'
+[Unit]
+Description=Pterodactyl Queue Worker
+After=redis-server.service
+[Service]
+User=apache
+Group=apache
+Restart=always
+ExecStart=/usr/bin/php /var/www/pterodactyl/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
+[Install]
+WantedBy=multi-user.target
+EOF
+ fi
+ setsebool -P httpd_can_network_connect 1
+ setsebool -P httpd_execmem 1
+ setsebool -P httpd_unified 1
+ fi
+ sudo systemctl daemon-reload
+ systemctl enable pteroq.service
+ systemctl start pteroq
+}
+
+install_pterodactyl_0.7.19() {
+ output "Creating the databases and setting root password..."
+ password=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
+ adminpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
+ rootpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
+ Q0="DROP DATABASE IF EXISTS test;"
+ Q1="CREATE DATABASE IF NOT EXISTS panel;"
+ Q2="SET old_passwords=0;"
+ Q3="GRANT ALL ON panel.* TO 'pterodactyl'@'127.0.0.1' IDENTIFIED BY '$password';"
+ Q4="GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, INDEX, DROP, EXECUTE, PROCESS, RELOAD, LOCK TABLES, CREATE USER ON *.* TO 'admin'@'$SERVER_IP' IDENTIFIED BY '$adminpassword' WITH GRANT OPTION;"
+ Q5="SET PASSWORD FOR 'root'@'localhost' = PASSWORD('$rootpassword');"
+ Q6="DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');"
+ Q7="DELETE FROM mysql.user WHERE User='';"
+ Q8="DELETE FROM mysql.db WHERE Db='test' OR Db='test\_%';"
+ Q9="FLUSH PRIVILEGES;"
+ SQL="${Q0}${Q1}${Q2}${Q3}${Q4}${Q5}${Q6}${Q7}${Q8}${Q9}"
+ mysql -u root -e "$SQL"
+
output "Binding MariaDB/MySQL to 0.0.0.0."
if grep -Fqs "bind-address" /etc/mysql/mariadb.conf.d/50-server.cnf ; then
sed -i -- '/bind-address/s/#//g' /etc/mysql/mariadb.conf.d/50-server.cnf
@@ -640,6 +960,54 @@ EOF
}
upgrade_pterodactyl(){
+ cd /var/www/pterodactyl
+ php artisan down
+ curl -L https://github.com/pterodactyl/panel/releases/download/v1.0.1/panel.tar.gz | tar --strip-components=1 -xzv
+ chmod -R 755 storage/* bootstrap/cache
+ composer install --no-dev --optimize-autoloader
+ php artisan view:clear
+ php artisan config:clear
+ php artisan migrate --force
+ php artisan db:seed --force
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ chown -R www-data:www-data * /var/www/pterodactyl
+ elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
+ chown -R apache:apache * /var/www/pterodactyl
+ chown -R nginx:nginx * /var/www/pterodactyl
+ semanage fcontext -a -t httpd_sys_rw_content_t "/var/www/pterodactyl/storage(/.*)?"
+ restorecon -R /var/www/pterodactyl
+ fi
+ output "Your panel has successfully been updated to version 1.0.1"
+ php artisan up
+ php artisan queue:restart
+}
+
+upgrade_pterodactyl_1.0(){
+ cd /var/www/pterodactyl
+ php artisan down
+ curl -L https://github.com/pterodactyl/panel/releases/download/v1.0.1/panel.tar.gz | tar --strip-components=1 -xzv
+ rm -rf $(find app public resources -depth | head -n -1 | grep -Fv "$(tar -tf panel.tar.gz)")
+ tar -xzvf panel.tar.gz && rm -f panel.tar.gz
+ chmod -R 755 storage/* bootstrap/cache
+ composer install --no-dev --optimize-autoloader
+ php artisan view:clear
+ php artisan config:clear
+ php artisan migrate --force
+ php artisan db:seed --force
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ chown -R www-data:www-data * /var/www/pterodactyl
+ elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
+ chown -R apache:apache * /var/www/pterodactyl
+ chown -R nginx:nginx * /var/www/pterodactyl
+ semanage fcontext -a -t httpd_sys_rw_content_t "/var/www/pterodactyl/storage(/.*)?"
+ restorecon -R /var/www/pterodactyl
+ fi
+ output "Your panel has successfully been updated to version 1.0.1"
+ php artisan up
+ php artisan queue:restart
+}
+
+upgrade_pterodactyl_0.7.19(){
cd /var/www/pterodactyl
php artisan down
curl -L https://github.com/pterodactyl/panel/releases/download/v0.7.19/panel.tar.gz | tar --strip-components=1 -xzv
@@ -725,6 +1093,97 @@ server {
location / {
try_files $uri $uri/ /index.php?$query_string;
}
+ location ~ \.php$ {
+ fastcgi_split_path_info ^(.+\.php)(/.+)$;
+ fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
+ fastcgi_index index.php;
+ include fastcgi_params;
+ fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+ fastcgi_param HTTP_PROXY "";
+ fastcgi_intercept_errors off;
+ fastcgi_buffer_size 16k;
+ fastcgi_buffers 4 16k;
+ fastcgi_connect_timeout 300;
+ fastcgi_send_timeout 300;
+ fastcgi_read_timeout 300;
+ include /etc/nginx/fastcgi_params;
+ }
+ location ~ /\.ht {
+ deny all;
+ }
+}
+' | sudo -E tee /etc/nginx/sites-available/pterodactyl.conf >/dev/null 2>&1
+ if [ "$lsb_dist" = "debian" ] && [ "$dist_version" = "8" ]; then
+ sed -i 's/http2//g' /etc/nginx/sites-available/pterodactyl.conf
+ fi
+ ln -s /etc/nginx/sites-available/pterodactyl.conf /etc/nginx/sites-enabled/pterodactyl.conf
+ service nginx restart
+}
+
+nginx_config_0.7.19() {
+ output "Disabling default configuration..."
+ rm -rf /etc/nginx/sites-enabled/default
+ output "Configuring Nginx Webserver..."
+
+echo '
+server_tokens off;
+set_real_ip_from 103.21.244.0/22;
+set_real_ip_from 103.22.200.0/22;
+set_real_ip_from 103.31.4.0/22;
+set_real_ip_from 104.16.0.0/12;
+set_real_ip_from 108.162.192.0/18;
+set_real_ip_from 131.0.72.0/22;
+set_real_ip_from 141.101.64.0/18;
+set_real_ip_from 162.158.0.0/15;
+set_real_ip_from 172.64.0.0/13;
+set_real_ip_from 173.245.48.0/20;
+set_real_ip_from 188.114.96.0/20;
+set_real_ip_from 190.93.240.0/20;
+set_real_ip_from 197.234.240.0/22;
+set_real_ip_from 198.41.128.0/17;
+set_real_ip_from 2400:cb00::/32;
+set_real_ip_from 2606:4700::/32;
+set_real_ip_from 2803:f800::/32;
+set_real_ip_from 2405:b500::/32;
+set_real_ip_from 2405:8100::/32;
+set_real_ip_from 2c0f:f248::/32;
+set_real_ip_from 2a06:98c0::/29;
+real_ip_header X-Forwarded-For;
+server {
+ listen 80 default_server;
+ server_name '"$FQDN"';
+ return 301 https://$server_name$request_uri;
+}
+server {
+ listen 443 ssl http2 default_server;
+ server_name '"$FQDN"';
+ root /var/www/pterodactyl/public;
+ index index.php;
+ access_log /var/log/nginx/pterodactyl.app-access.log;
+ error_log /var/log/nginx/pterodactyl.app-error.log error;
+ # allow larger file uploads and longer script runtimes
+ client_max_body_size 100m;
+ client_body_timeout 120s;
+ sendfile off;
+ # SSL Configuration
+ ssl_certificate /etc/letsencrypt/live/'"$FQDN"'/fullchain.pem;-
+ ssl_certificate_key /etc/letsencrypt/live/'"$FQDN"'/privkey.pem;
+ ssl_session_cache shared:SSL:10m;
+ ssl_protocols TLSv1.2;
+ ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256';
+ ssl_prefer_server_ciphers on;
+ # See https://hstspreload.org/ before uncommenting the line below.
+ # add_header Strict-Transport-Security "max-age=15768000; preload;";
+ add_header X-Content-Type-Options nosniff;
+ add_header X-XSS-Protection "1; mode=block";
+ add_header X-Robots-Tag none;
+ add_header Content-Security-Policy "frame-ancestors 'self'";
+ add_header X-Frame-Options DENY;
+ add_header Referrer-Policy same-origin;
+ location / {
+ try_files $uri $uri/ /index.php?$query_string;
+ }
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
@@ -921,11 +1380,43 @@ EOF
}
webserver_config(){
- if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
- if [ "$webserver" = "1" ]; then
- nginx_config
- elif [ "$webserver" = "2" ]; then
- apache_config
+ if [ "$lsb_dist" = "debian" ] || [ "$lsb_dist" = "ubuntu" ]; then
+ if [ "$installoption" = "1" ]; then
+ if [ "$webserver" = "1" ]; then
+ nginx_config
+ elif [ "$webserver" = "2" ]; then
+ apache_config
+ fi
+ elif [ "$installoption" = "2" ]; then
+ if [ "$webserver" = "1" ]; then
+ nginx_config_0.7.19
+ elif [ "$webserver" = "2" ]; then
+ apache_config
+ fi
+ elif [ "$installoption" = "3" ]; then
+ if [ "$webserver" = "1" ]; then
+ nginx_config
+ elif [ "$webserver" = "2" ]; then
+ apache_config
+ fi
+ elif [ "$installoption" = "4" ]; then
+ if [ "$webserver" = "1" ]; then
+ nginx_config_0.7.19
+ elif [ "$webserver" = "2" ]; then
+ apache_config
+ fi
+ elif [ "$installoption" = "5" ]; then
+ if [ "$webserver" = "1" ]; then
+ nginx_config
+ elif [ "$webserver" = "2" ]; then
+ apache_config
+ fi
+ elif [ "$installoption" = "6" ]; then
+ if [ "$webserver" = "1" ]; then
+ nginx_config_0.7.19
+ elif [ "$webserver" = "2" ]; then
+ apache_config
+ fi
fi
elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
if [ "$webserver" = "1" ]; then
@@ -943,9 +1434,65 @@ setup_pterodactyl(){
install_pterodactyl
ssl_certs
webserver_config
+}
+
+
+setup_pterodactyl_0.7.19(){
+ install_dependencies_0.7.19
+ install_pterodactyl_0.7.19
+ ssl_certs
+ webserver_config
theme
}
+install_wings() {
+ cd /root
+ output "Installing Pterodactyl Wings dependencies..."
+ if [ "$lsb_dist" = "ubuntu" ] || [ "$lsb_dist" = "debian" ]; then
+ apt-get -y install curl tar unzip
+ elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
+ yum -y install curl tar unzip
+ fi
+
+ if [[ ( "$lsb_dist" = "centos" || "$lsb_dist" = "rhel" ) && "$dist_version" = "8" ]]; then
+ curl -sSL https://raw.githubusercontent.com/tommytran732/CentOS-8-Docker-Script/master/get-docker.sh | sudo bash
+ else
+ output "Installing Docker"
+ curl -sSL https://get.docker.com/ | CHANNEL=stable bash
+ fi
+
+ service docker start
+ systemctl enable docker
+ output "Enabling SWAP support for Docker."
+ sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="[^"]*/& swapaccount=1/' /etc/default/grub
+ output "Installing the Pterodactyl wings..."
+ mkdir -p /etc/pterodactyl /srv/daemon-data
+ cd /etc/pterodactyl
+ curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/download/v1.0.0/wings_linux_amd64
+ chmod u+x /usr/local/bin/wings
+ bash -c 'cat > /etc/systemd/system/wings.service' <<-'EOF'
+[Unit]
+Description=Pterodactyl Wings Daemon
+After=docker.service
+
+[Service]
+User=root
+WorkingDirectory=/etc/pterodactyl
+LimitNOFILE=4096
+PIDFile=/var/run/wings/daemon.pid
+ExecStart=/usr/local/bin/wings
+Restart=on-failure
+StartLimitInterval=600
+
+[Install]
+WantedBy=multi-user.target
+EOF
+
+ systemctl enable --now wings
+
+ sudo wings
+}
+
install_daemon() {
cd /root
output "Installing Pterodactyl Daemon dependencies..."
@@ -1029,6 +1576,36 @@ EOF
service wings start
}
+migrate_wings(){
+ mkdir -p /etc/pterodactyl
+ curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/download/v1.0.0/wings_linux_amd64
+ chmod u+x /usr/local/bin/wings
+ systemctl stop wings
+ rm -rf /srv/daemon
+ systemctl disable --now pterosftp
+ rm /etc/systemd/system/pterosftp.service
+ bash -c 'cat > /etc/systemd/system/wings.service' <<-'EOF'
+[Unit]
+Description=Pterodactyl Wings Daemon
+After=docker.service
+
+[Service]
+User=root
+WorkingDirectory=/etc/pterodactyl
+LimitNOFILE=4096
+PIDFile=/var/run/wings/daemon.pid
+ExecStart=/usr/local/bin/wings
+Restart=on-failure
+StartLimitInterval=600
+
+[Install]
+WantedBy=multi-user.target
+EOF
+ systemctl daemon-reload
+ systemctl enable --now wings
+ output "Your daemon has been migrated to wings."
+}
+
upgrade_daemon(){
cd /srv/daemon
service wings stop
@@ -1192,7 +1769,7 @@ ssl_certs(){
fi
fi
- if [ "$lsb_dist" = "debian" ] || [ "$lsb_dist" = "ubuntu" ]; then
+ if [ "$lsb_dist" = "debian" ] || [ "$lsb_dist" = "ubuntu" ]; then
if [ "$installoption" = "1" ]; then
if [ "$webserver" = "1" ]; then
(crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service nginx stop" --post-hook "service nginx restart" >> /dev/null 2>&1')| crontab -
@@ -1200,14 +1777,28 @@ ssl_certs(){
(crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service apache2 stop" --post-hook "service apache2 restart" >> /dev/null 2>&1')| crontab -
fi
elif [ "$installoption" = "2" ]; then
- (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "ufw allow 80" --pre-hook "service wings stop" --post-hook "ufw deny 80" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ if [ "$webserver" = "1" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service nginx stop" --post-hook "service nginx restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$webserver" = "2" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service apache2 stop" --post-hook "service apache2 restart" >> /dev/null 2>&1')| crontab -
+ fi
elif [ "$installoption" = "3" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "ufw allow 80" --pre-hook "service wings stop" --post-hook "ufw deny 80" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$installoption" = "4" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "ufw allow 80" --pre-hook "service wings stop" --post-hook "ufw deny 80" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$installoption" = "5" ]; then
if [ "$webserver" = "1" ]; then
(crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service nginx stop" --pre-hook "service wings stop" --post-hook "service nginx restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
elif [ "$webserver" = "2" ]; then
(crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service apache2 stop" --pre-hook "service wings stop" --post-hook "service apache2 restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
fi
- fi
+ elif [ "$installoption" = "6" ]; then
+ if [ "$webserver" = "1" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service nginx stop" --pre-hook "service wings stop" --post-hook "service nginx restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$webserver" = "2" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service apache2 stop" --pre-hook "service wings stop" --post-hook "service apache2 restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ fi
+ fi
elif [ "$lsb_dist" = "fedora" ] || [ "$lsb_dist" = "centos" ] || [ "$lsb_dist" = "rhel" ]; then
if [ "$installoption" = "1" ]; then
if [ "$webserver" = "1" ]; then
@@ -1216,14 +1807,34 @@ ssl_certs(){
(crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service httpd stop" --post-hook "service httpd restart" >> /dev/null 2>&1')| crontab -
fi
elif [ "$installoption" = "2" ]; then
- (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "firewall-cmd --add-port=80/tcp && firewall-cmd --reload" --pre-hook "service wings stop" --post-hook "firewall-cmd --remove-port=80/tcp && firewall-cmd --reload" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ if [ "$webserver" = "1" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service nginx stop" --post-hook "service nginx restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$webserver" = "2" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service httpd stop" --post-hook "service httpd restart" >> /dev/null 2>&1')| crontab -
+ fi
elif [ "$installoption" = "3" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "firewall-cmd --add-port=80/tcp && firewall-cmd --reload" --pre-hook "service wings stop" --post-hook "firewall-cmd --remove-port=80/tcp && firewall-cmd --reload" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$installoption" = "4" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "firewall-cmd --add-port=80/tcp && firewall-cmd --reload" --pre-hook "service wings stop" --post-hook "firewall-cmd --remove-port=80/tcp && firewall-cmd --reload" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$installoption" = "5" ]; then
if [ "$webserver" = "1" ]; then
(crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service nginx stop" --pre-hook "service wings stop" --post-hook "service nginx restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
elif [ "$webserver" = "2" ]; then
(crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service httpd stop" --pre-hook "service wings stop" --post-hook "service httpd restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
fi
- fi
+ elif [ "$installoption" = "5" ]; then
+ if [ "$webserver" = "1" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service nginx stop" --pre-hook "service wings stop" --post-hook "service nginx restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$webserver" = "2" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service httpd stop" --pre-hook "service wings stop" --post-hook "service httpd restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ fi
+ elif [ "$installoption" = "6" ]; then
+ if [ "$webserver" = "1" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service nginx stop" --pre-hook "service wings stop" --post-hook "service nginx restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ elif [ "$webserver" = "2" ]; then
+ (crontab -l ; echo '0 0,12 * * * certbot renew --pre-hook "service httpd stop" --pre-hook "service wings stop" --post-hook "service httpd restart" --post-hook "service wings restart" >> /dev/null 2>&1')| crontab -
+ fi
+ fi
fi
}
@@ -1264,10 +1875,24 @@ EOF
ufw allow 443
ufw allow 3306
elif [ "$installoption" = "2" ]; then
+ ufw allow 80
+ ufw allow 443
+ ufw allow 3306
+ elif [ "$installoption" = "3" ]; then
ufw allow 80
ufw allow 8080
ufw allow 2022
- elif [ "$installoption" = "3" ]; then
+ elif [ "$installoption" = "4" ]; then
+ ufw allow 80
+ ufw allow 8080
+ ufw allow 2022
+ elif [ "$installoption" = "5" ]; then
+ ufw allow 80
+ ufw allow 443
+ ufw allow 8080
+ ufw allow 2022
+ ufw allow 3306
+ elif [ "$installoption" = "6" ]; then
ufw allow 80
ufw allow 443
ufw allow 8080
@@ -1282,17 +1907,31 @@ EOF
if [ "$installoption" = "1" ]; then
firewall-cmd --add-service=http --permanent
firewall-cmd --add-service=https --permanent
- firewall-cmd --add-service=mysql --permanent
+ firewall-cmd --add-service=mysql --permanent
elif [ "$installoption" = "2" ]; then
+ firewall-cmd --add-service=http --permanent
+ firewall-cmd --add-service=https --permanent
+ firewall-cmd --add-service=mysql --permanent
+ elif [ "$installoption" = "3" ]; then
firewall-cmd --permanent --add-service=80/tcp
firewall-cmd --permanent --add-port=2022/tcp
firewall-cmd --permanent --add-port=8080/tcp
- elif [ "$installoption" = "3" ]; then
+ elif [ "$installoption" = "4" ]; then
+ firewall-cmd --permanent --add-service=80/tcp
+ firewall-cmd --permanent --add-port=2022/tcp
+ firewall-cmd --permanent --add-port=8080/tcp
+ elif [ "$installoption" = "5" ]; then
firewall-cmd --add-service=http --permanent
firewall-cmd --add-service=https --permanent
firewall-cmd --permanent --add-port=2022/tcp
firewall-cmd --permanent --add-port=8080/tcp
- firewall-cmd --permanent --add-service=mysql
+ firewall-cmd --permanent --add-service=mysql
+ elif [ "$installoption" = "6" ]; then
+ firewall-cmd --add-service=http --permanent
+ firewall-cmd --add-service=https --permanent
+ firewall-cmd --permanent --add-port=2022/tcp
+ firewall-cmd --permanent --add-port=8080/tcp
+ firewall-cmd --permanent --add-service=mysql
fi
fi
}
@@ -1438,62 +2077,96 @@ broadcast_database(){
preflight
install_options
case $installoption in
- 1) webserver_options
- theme_options
- repositories_setup
- required_infos
- firewall
- setup_pterodactyl
- broadcast
- ;;
- 2) repositories_setup
- required_infos
- firewall
- ssl_certs
- install_daemon
- broadcast
- ;;
- 3) webserver_options
- theme_options
- repositories_setup
- required_infos
- firewall
- setup_pterodactyl
- install_daemon
- broadcast
- ;;
- 4) install_standalone_sftp
- ;;
- 5) theme_options
- upgrade_pterodactyl
- theme
- ;;
- 6) upgrade_daemon
- ;;
- 7) theme_options
- upgrade_pterodactyl
- theme
- upgrade_daemon
- ;;
- 8) upgrade_standalone_sftp
- ;;
- 9) install_mobile
- ;;
- 10) upgrade_mobile
- ;;
- 11) install_phpmyadmin
- ;;
- 12) repositories_setup
- install_database
- ;;
- 13) theme_options
+ 1) webserver_options
+ repositories_setup
+ required_infos
+ firewall
+ setup_pterodactyl
+ broadcast
+ ;;
+ 2) webserver_options
+ theme_options
+ repositories_setup_0.7.19
+ required_infos
+ firewall
+ setup_pterodactyl_0.7.19
+ broadcast
+ ;;
+ 3) repositories_setup
+ required_infos
+ firewall
+ ssl_certs
+ install_wings
+ broadcast
+ ;;
+ 4) repositories_setup_0.7.19
+ required_infos
+ firewall
+ ssl_certs
+ install_daemon
+ broadcast
+ ;;
+ 5) webserver_options
+ repositories_setup
+ required_infos
+ firewall
+ ssl_certs
+ setup_pterodactyl
+ install_wings
+ broadcast
+ ;;
+ 6) webserver_options
+ theme_options
+ repositories_setup_0.7.19
+ required_infos
+ firewall
+ setup_pterodactyl_0.7.19
+ install_daemon
+ broadcast
+ ;;
+ 7) install_standalone_sftp
+ ;;
+ 8) upgrade_pterodactyl
+ ;;
+ 9) upgrade_pterodactyl_1.0
+ ;;
+ 10) theme_options
+ upgrade_pterodactyl_0.7.19
+ theme
+ ;;
+ 11) upgrade_daemon
+ ;;
+ 12) migrate_wings
+ ;;
+ 13) theme_options
+ upgrade_pterodactyl_0.7.19
+ theme
+ migrate_wings
+ ;;
+ 14) theme_options
+ upgrade_pterodactyl_1.0
+ theme
+ upgrade_daemon
+ ;;
+ 15) upgrade_standalone_sftp
+ ;;
+ 16) install_mobile
+ ;;
+ 17) upgrade_mobile
+ ;;
+ 18) install_phpmyadmin
+ ;;
+ 19) repositories_setup
+ install_database
+ ;;
+ 20) theme_options
if [ "$themeoption" = "1" ]; then
- upgrade_pterodactyl
+ upgrade_pterodactyl_0.7.19
fi
theme
- ;;
- 14) curl -sSL https://raw.githubusercontent.com/tommytran732/MariaDB-Root-Password-Reset/master/mariadb-104.sh | sudo bash
- ;;
- 15) database_host_reset
- ;;
+ ;;
+ 21) curl -sSL https://raw.githubusercontent.com/tommytran732/MariaDB-Root-Password-Reset/master/mariadb-104.sh | sudo bash
+ ;;
+ 22) database_host_reset
+ ;;
esac