-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathquotationd-update.sh
107 lines (95 loc) · 2.47 KB
/
quotationd-update.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/bash
# shellcheck disable=SC2034
# Copyright (c) 2018
# All rights reserved.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND.
: '
# Run this file
```
bash -ic "$(wget -4qO- -o- raw.githubusercontent.com/mikeytown2/masternode/master/quotationd-update.sh)" ; source ~/.bashrc
```
'
# Github user and project.
GITHUB_REPO='QuotationCoin/QUOT-Coin'
# Display Name.
DAEMON_NAME='Quotation Core'
# Coin Ticker.
TICKER='QUOT'
# Binary base name.
BIN_BASE='quotation'
# Directory.
DIRECTORY='.quotation'
# Conf File.
CONF='quotation.conf'
# Port.
DEFAULT_PORT=19871
# Explorer URL
EXPLORER_URL='http://explorer.quotcoin.com/'
# Amount of Collateral needed.
COLLATERAL=5000
# Cycle Daemon on first start.
DAEMON_CYCLE=1
# Tip Address
TIPS='QTUfZ9pwka1nBigvVFnnwc59XG1YmoupPJ'
# Dropbox Addnodes
DROPBOX_ADDNODES='91ed0jtyosqgekl'
# If set to 1 then use addnodes from dropbox.
USE_DROPBOX_ADDNODES=1
# Dropbox Bootstrap
DROPBOX_BOOTSTRAP='kp1b62y5pe2f0xj'
# If set to 1 then use bootstrap from dropbox.
USE_DROPBOX_BOOTSTRAP=1
# Dropbox blocks and chainstake folders.
DROPBOX_BLOCKS_N_CHAINS='1bqw4zkret3mzex'
# Multiple on single IP.
MULTI_IP_MODE=1
# Mini Monitor check masternode list.
MINI_MONITOR_MN_LIST=1
# Mini Monitor Status to check for.
MINI_MONITOR_MN_STATUS='4'
# Mini Monitor masternode count is a json string.
MINI_MONITOR_MN_COUNT_JSON=1
ASCII_ART () {
echo -e "\e[0m"
clear 2> /dev/null
cat << "QUOTATION"
____ __ __ _
/ __ \__ _____ / /____ _/ /_(_)__ ___
/ /_/ / // / _ \/ __/ _ `/ __/ / _ \/ _ \
\___\_\_,_/\___/\__/\_,_/\__/_/\___/_//_/
QUOTATION
}
# Discord User Info
# @mcarper#0918
# 401161988744544258
cd ~/ || exit
COUNTER=0
rm -f ~/___mn.sh
while [[ ! -f ~/___mn.sh ]] || [[ $( grep -Fxc "# End of masternode setup script." ~/___mn.sh ) -eq 0 ]]
do
rm -f ~/___mn.sh
echo "Downloading Masternode Setup Script."
wget -4qo- gist.githack.com/mikeytown2/1637d98130ac7dfbfa4d24bac0598107/raw/mcarper.sh -O ~/___mn.sh
COUNTER=$(( COUNTER + 1 ))
if [[ "${COUNTER}" -gt 3 ]]
then
echo
echo "Download of masternode setup script failed."
echo
exit 1
fi
done
(
sleep 2
rm ~/___mn.sh
) & disown
(
# shellcheck disable=SC1091
# shellcheck source=/root/___mn.sh
. ~/___mn.sh
. ~/.bashrc
UPDATE_DAEMON_ADD_CRON "${BIN_BASE}" "${GITHUB_REPO}" "${CONF_FILE}" "${DAEMON_DOWNLOAD}" "${DIRECTORY}" "${DROPBOX_ADDNODES}" "${DROPBOX_BOOTSTRAP}" "${DROPBOX_BLOCKS_N_CHAINS}" force
)
# shellcheck source=/root/.bashrc
. ~/.bashrc
stty sane