-
Notifications
You must be signed in to change notification settings - Fork 13
/
monero_info.sh
executable file
·45 lines (44 loc) · 1.75 KB
/
monero_info.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
#!/bin/bash
#MONERODO Manage Monero Settings
#Menu
while true
do
echo "================="
echo "Get info on the Monero daemon"
echo "================="
cat /home/bob/.monerodo/status_poolwallet.txt
cat /home/bob/.monerodo/status_nodowallet.txt
cat /home/bob/.monerodo/status.txt
echo "!!!!!!!! Status of daemon !!!!!!!!!!"
monerod --rpc-bind-ip $current_ip status
echo "other options coming soon"
echo "[1] Print connections"
echo "[2] Print peer list"
echo "[3] Status of all the other things"
echo "[r] Return to monero settings menu"
echo -e "\n"
echo -e "Enter your selection"
echo "Or leave blank and press enter to update info"
read answer
case "$answer" in
1) monerod --rpc-bind-ip $current_ip print_cn;;
2) monerod --rpc-bind-ip $current_ip print_pl;;
3) echo "!!!!!!! Status of all the other important things!!!!!"
echo "Note, just because they are running doesn't mean they are working. Check the logs."
echo "Status of the pool wallet stuff: " && service mos_monerowallet status
service mos_poolnode status
echo "Status of the nvidia miner on the monerodo pool: " && service mos_miner status
echo "Status of the nvidia miner on the external pool: " && service mos_ext_miner status
echo "Status of the nvidia miner on the local daemon: " && service mos_nvidia_solo status
echo "Status of the CPU miner on this monerodo's pool: "&& service mos_cpuminer status
echo "Status of the CPU miner on an external pool: " && service mos_ext_cpuminer.conf status
echo "Status of the CPU miner on the local daemon, AES only: " && service mos_mos_daemonminer status
echo "Status of the MiniNodo wallet: " && service mos_mininodo status
service mos_nodowallet status
echo "Press return to continue"
read wuppita
clear
;;
r) exit ;;
esac
done