-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstall.sh
executable file
·30 lines (25 loc) · 1.19 KB
/
install.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
#!/bin/bash
# Veles Core Masternode installation launcher (2nd gen, experimental)
# Fetches the installator wizard and performs full Veles Masternode
# installation from this source directory
if [[ "${1}" == "--help" ]]; then
echo "
Veles Core Masternode installation launcher (2nd gen, experimental)
____ ____ .__ _________
_\___\_/___/____ | | ____ _____\_ ___ \ ___________ ____
\___________/__ \| | _/ __ \ / ___/ \ \/ / _ \_ __ \_/ __ \
\ Y /\ ___/| |_\ ___/ \___ \\ \___( <_> ) | \/\ ___/
\___/ \___ >____/\___ >____ >\______ /\____/|__| \___ >
\/ \/ \/ \/ \/
Usage: install.sh [options]
Starts an installation process of the Veles Core Masternode
Options:
--non-interactive perform fully automatic installation
--docker-test install from docker and run all tests
"
exit 0;
fi
echo "Downloading Veles Masternode installer wizard ..."
git clone https://github.com/velescore/masternode-installer2 /tmp/veles-masternode-installer
(export VELES_MN_SRC=$(dirname $0) ; /tmp/veles-masternode-installer/install.sh "${0}")
rm -rf /tmp/veles-masternode-installer