1
0
mirror of https://github.com/tommytran732/Pterodactyl-Script synced 2024-09-19 07:34:43 -04:00

Removed the mobile app support

This commit is contained in:
TommyTran732 2021-09-26 00:29:32 -04:00
parent 288998802e
commit 8063b64fd8
No known key found for this signature in database
GPG Key ID: 8825C3851DC29C20

View File

@ -166,11 +166,9 @@ install_options(){
output "[4] Install the standalone SFTP server." output "[4] Install the standalone SFTP server."
output "[5] Upgrade (1.x) panel to ${PANEL}." output "[5] Upgrade (1.x) panel to ${PANEL}."
output "[6] Migrating daemon to wings." output "[6] Migrating daemon to wings."
output "[7] 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 "[7] Install or update to phpMyAdmin (${PHPMYADMIN}) (only use this after you have installed the panel)."
output "[8] Update mobile compatibility." output "[8] Emergency MariaDB root password reset."
output "[9] Install or update to phpMyAdmin (${PHPMYADMIN}) (only use this after you have installed the panel)." output "[9] Emergency database host information reset."
output "[10] Emergency MariaDB root password reset."
output "[11] Emergency database host information reset."
read -r choice read -r choice
case $choice in case $choice in
1 ) installoption=1 1 ) installoption=1
@ -189,21 +187,15 @@ install_options(){
output "You have selected to upgrade the panel to ${PANEL}." output "You have selected to upgrade the panel to ${PANEL}."
;; ;;
6 ) installoption=6 6 ) installoption=6
output "You have activated mobile app compatibility."
;;
7 ) installoption=7
output "You have selected to update the mobile app compatibility."
;;
8 ) installoption=8
output "You have selected to install or update phpMyAdmin ${PHPMYADMIN}." output "You have selected to install or update phpMyAdmin ${PHPMYADMIN}."
;; ;;
9 ) installoption=9 7 ) installoption=7
output "You have selected to install a Database host." output "You have selected to install a Database host."
;; ;;
10 ) installoption=10 8 ) installoption=8
output "You have selected MariaDB root password reset." output "You have selected MariaDB root password reset."
;; ;;
11 ) installoption=11 9 ) installoption=9
output "You have selected Database Host information reset." output "You have selected Database Host information reset."
;; ;;
* ) output "You did not enter a valid selection." * ) output "You did not enter a valid selection."
@ -739,19 +731,6 @@ upgrade_wings(){
output "Your wings have been updated to version ${WINGS}." output "Your wings have been updated to version ${WINGS}."
} }
install_mobile(){
cd /var/www/pterodactyl || exit
composer config repositories.cloud composer https://packages.pterodactyl.cloud
composer require pterodactyl/mobile-addon --update-no-dev --optimize-autoloader
php artisan migrate --force
}
upgrade_mobile(){
cd /var/www/pterodactyl || exit
composer update pterodactyl/mobile-addon
php artisan migrate --force
}
install_phpmyadmin(){ install_phpmyadmin(){
output "Installing phpMyAdmin..." output "Installing phpMyAdmin..."
cd /var/www/pterodactyl/public || exit cd /var/www/pterodactyl/public || exit
@ -1075,17 +1054,13 @@ case $installoption in
;; ;;
5) upgrade_wings 5) upgrade_wings
;; ;;
6) install_mobile 6) install_phpmyadmin
;; ;;
7) upgrade_mobile 7) repositories_setup
;;
8) install_phpmyadmin
;;
9) repositories_setup
install_database install_database
;; ;;
10) curl -sSL https://raw.githubusercontent.com/tommytran732/MariaDB-Root-Password-Reset/master/mariadb-104.sh | sudo bash 8) curl -sSL https://raw.githubusercontent.com/tommytran732/MariaDB-Root-Password-Reset/master/mariadb-104.sh | sudo bash
;; ;;
11) database_host_reset 9) database_host_reset
;; ;;
esac esac