Move check alive to be in script, not cron.

This commit is contained in:
Hyperling 2021-02-15 18:58:06 -06:00
parent 60c8ce0af7
commit fdd1db85e5
3 changed files with 6 additions and 2 deletions

View File

@ -6,6 +6,8 @@
- name: Miner | Facts | System | Global
set_fact:
file_server: 'ling@leet'
check_alive_start: "[[ ps -ef | grep -v 'grep' | grep -c '"
check_alive_end: "' == '0' ]] && "
## Config File ##

View File

@ -26,7 +26,7 @@
user: mfn
name: "Start {{ item.name }}"
minute: "*/5"
job: "[[ ps -ef | grep -v 'grep' | grep -c '{{ item.command }}' == '0' ]] && {{ item.command }}"
job: "{{ item.command }}"
state: present
disabled: "{{ not(item.enabled) }}"
loop: "{{ miners }}"

View File

@ -118,7 +118,9 @@
whoami
pwd
{{ check_alive_start }}{{ nanominer_script }}{{ check_alive_end }} {
time {{ nanominer_exec }} {{ nanominer_config }}
}
marker: '{mark}'
marker_begin: "#!{{ bash_exec.stdout }}"