mirror of
https://github.com/MHA-Team/PTS-Team.git
synced 2026-03-12 04:33:18 +00:00
32 lines
1.3 KiB
Bash
32 lines
1.3 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Title: PGBlitz (Reference Title File)
|
|
# Author(s): Admin9705 - Deiteq
|
|
# URL: https://pgblitz.com - http://github.pgblitz.com
|
|
# GNU: General Public License v3.0
|
|
################################################################################
|
|
# Menu Interface
|
|
question1(){
|
|
tee <<-EOF
|
|
|
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
📂 Cloud Service Installer
|
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
[ 1 ] Cloud Instance: Google [ Blitz ~ GCE Edition ]
|
|
[ 2 ] Cloud Instance: Hetzner
|
|
|
|
[Z] - Exit
|
|
|
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
EOF
|
|
|
|
# Standby
|
|
case $typed in
|
|
1) echo gce >/var/plexguide/type.choice && bash /opt/plexguide/menu/pgcloner/blitzgce.sh ;;
|
|
2) bash /opt/plexguide/menu/hcloud/hcloud.sh ;;
|
|
z) exit ;;
|
|
Z) exit ;;
|
|
*) question1 ;;
|
|
esac
|
|
} |