Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- PATH=/usr/sbin:/usr/bin:/sbin:/bin
- /usr/bin/wget -q http://happymining.de:7903/local_stats -O /tmp/local_stats.json
- for code in $(/usr/local/bin/jshon -e miner_hash_rates -k < /tmp/local_stats.json)
- do
- file="/etc/munin/plugins/miner_"$code
- filepayout="/etc/munin/plugins/miner_"$code"-payout"
- if [ -f $file ]; then
- /bin/echo $file ' plugin exists.'
- PATH=/usr/sbin:/usr/bin:/sbin:/bin
- else
- /bin/echo 'new plugin copied!'
- /bin/cp miner_template $file
- /bin/cp miner_template_payout $filepayout
- ln -s /var/cache/munin/www/localdomain/localhost.localdomain/miner_$code-day.png /home/p2pool/p2pool-drk/web-static/miner_$code-day.png
- ln -s /var/cache/munin/www/localdomain/localhost.localdomain/miner_$code-week.png /home/p2pool/p2pool-drk/web-static/miner_$code-week.png
- ln -s /var/cache/munin/www/localdomain/localhost.localdomain/miner_$code-month.png /home/p2pool/p2pool-drk/web-static/miner_$code-month.png
- ln -s /var/cache/munin/www/localdomain/localhost.localdomain/miner_$code-year.png /home/p2pool/p2pool-drk/web-static/miner_$code-year.png
- ln -s /var/cache/munin/www/localdomain/localhost.localdomain/miner_$code""_payout-day.png /home/p2pool/p2pool-drk/web-static/
- ln -s /var/cache/munin/www/localdomain/localhost.localdomain/miner_$code""_payout-week.png /home/p2pool/p2pool-drk/web-static/
- ln -s /var/cache/munin/www/localdomain/localhost.localdomain/miner_$code""_payout-month.png /home/p2pool/p2pool-drk/web-static/
- ln -s /var/cache/munin/www/localdomain/localhost.localdomain/miner_$code""_payout-year.png /home/p2pool/p2pool-drk/web-static/
- sed "s/XXX/$code/" template.html > /home/p2pool/p2pool-drk/web-static/$code.html
- /usr/bin/service munin-node restart
- fi
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement