-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy patherrors.sh
More file actions
94 lines (81 loc) · 1.41 KB
/
errors.sh
File metadata and controls
94 lines (81 loc) · 1.41 KB
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
92
93
94
#!/usr/bin/env bash
#####################################################
# Source code https://github.com/end222/pacmenu
# Updated by cryptopool.builders for crypto use...
#####################################################
source /etc/functions.sh
cd $HOME/multipool/daemon_builder
RESULT=$(dialog --stdout --title "Ultimate Crypto-Server Daemon Installer" --menu "Choose one" -1 60 10 \
1 "Make clean - does not build only cleans build dir" \
2 "Fix invalid application of sizeof error" \
3 "Fix openSSL 1.1x incompatibilities" \
4 "Build Berkeley Coin with -fPIC" \
5 "Build Berkeley Coin with --without-miniupnpc" \
6 "Build Berkeley Attempt to fix secp256k1 build error" \
7 "Build Berkeley Permission Denied error" \
8 "Build Berkeley with DB5.3" \
9 "Upgrade Berkeley Coin with -fPIC" \
10 Exit)
if [ $RESULT = ]
then
bash $(basename $0) && exit;
fi
if [ $RESULT = 1 ]
then
clear;
source make_clean.sh
exit;
fi
if [ $RESULT = 2 ]
then
clear;
source size_of.sh;
exit;
fi
if [ $RESULT = 3 ]
then
clear;
source ssl_errors.sh;
exit;
fi
if [ $RESULT = 4 ]
then
clear;
source fPIC.sh
exit;
fi
if [ $RESULT = 5 ]
then
clear;
source mini.sh
exit;
fi
if [ $RESULT = 6 ]
then
clear;
source secp256k1.sh
exit;
fi
if [ $RESULT = 7 ]
then
clear;
source denied.sh
exit;
fi
if [ $RESULT = 8 ]
then
clear;
source build_db53.sh
exit;
fi
if [ $RESULT = 9 ]
then
clear;
source fPIC_upgrade.sh
exit;
fi
if [ $RESULT = 10 ]
then
clear;
exit;
fi