GPU mining performance starting to report lower over time, looks like lots of watchdog processes running. Add a daily reboot as well as follow-up patch. Refactor current schedule document across a few files.

This commit is contained in:
2021-02-17 05:12:25 -06:00
parent e699825d11
commit 7953bc7a51
5 changed files with 55 additions and 25 deletions

View File

@ -19,6 +19,10 @@
config_section_wallet: wallet
## Ethminer ##
## xmr-stak ##
## Nanominer ##
- name: Miner | Facts | System | nanominer 1
@ -41,4 +45,14 @@
set_fact:
nanominer_tar_local: "{{ nanominer_bin }}.tar.gz"
nanominer_exec: "{{ nanominer_bin }}/nanominer"
when: nanominer is defined
when: nanominer is defined
## Miner Array ##
- name: Miner | Facts | System | Miner Array
set_fact:
miners:
- { "name": "xmr_stak_cpu", "enabled": '{{ (xmr_stak_cpu is defined) }}', "command": "{{ user_mfn.home }}/xmr_stak_cpu.sh" }
- { "name": "ethminer", "enabled": '{{ (ethminer is defined) }}', "command": "{{ user_mfn.home }}/ethminer.sh" }
- { "name": "nanominer", "enabled": '{{ (nanominer is defined) }}', "command": "{{ nanominer_script }}" }