-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.sh
91 lines (79 loc) · 1.55 KB
/
menu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#####################################################
# Source code https://github.com/end222/pacmenu
# Updated by cryptopool.builders for crypto use...
#####################################################
source /etc/functions.sh
RESULT=$(dialog --stdout --nocancel --default-item 1 --title "Ultimate Crypto-Server Setup Installer v2.55" --menu "Choose one" -1 60 16 \
' ' "- YiiMP Server Install -" \
1 "YiiMP Single Server" \
2 "YiiMP Multi Server" \
' ' "- YiiMP Upgrade -" \
3 "YiiMP Stratum Upgrade" \
' ' "- NOMP Server Install -" \
4 "NOMP Server" \
' ' "- MPOS Server Install -" \
5 "MPOS Server - Coming Soon" \
' ' "- CryptoNote Server Install -" \
6 "CryptoNote-Nodejs Server - Coming Soon" \
' ' "- Faucet Server Install -" \
7 "Faucet Script - Coming Soon" \
' ' "- Daemon Wallet Builder -" \
8 "Daemonbuilder" \
9 Exit)
if [ $RESULT = ]
then
bash $(basename $0) && exit;
fi
if [ $RESULT = 1 ]
then
clear;
cd $HOME/multipool/install
source bootstrap_single.sh;
fi
if [ $RESULT = 2 ]
then
clear;
cd $HOME/multipool/install
source bootstrap_multi.sh;
fi
if [ $RESULT = 3 ]
then
clear;
cd $HOME/multipool/install
source bootstrap_upgrade.sh;
fi
if [ $RESULT = 4 ]
then
clear;
cd $HOME/multipool/install
source bootstrap_nomp.sh;
fi
if [ $RESULT = 5 ]
then
clear;
cd $HOME/multipool/install
exit 0;
fi
if [ $RESULT = 6 ]
then
clear;
cd $HOME/multipool/install
exit 0;
fi
if [ $RESULT = 7 ]
then
clear;
cd $HOME/multipool/install
exit 0;
fi
if [ $RESULT = 8 ]
then
clear;
cd $HOME/multipool/install
source bootstrap_coin.sh;
fi
if [ $RESULT = 9 ]
then
clear;
exit;
fi