Try lots of ways and see if anything works.
This commit is contained in:
parent
1ebf325b03
commit
74eba07622
@ -6,15 +6,47 @@
|
|||||||
- name: Miner | Facts | Config File | Download
|
- name: Miner | Facts | Config File | Download
|
||||||
shell: "scp {{ wallet_server }}:{{ wallet_file_remote }} {{ wallet_file_local }}; chmod 700 {{ wallet_file_local }}"
|
shell: "scp {{ wallet_server }}:{{ wallet_file_remote }} {{ wallet_file_local }}; chmod 700 {{ wallet_file_local }}"
|
||||||
|
|
||||||
|
- name: Miner | Facts | Config File | Load XMR
|
||||||
|
set_fact:
|
||||||
|
wallet_xmr: "{{ lookup('ini', 'xmr, file={{wallet_file_local}}') }}"
|
||||||
|
when: wallet_file_local is file
|
||||||
|
ignore_errors: yes
|
||||||
- name: Miner | Facts | Config File | Load XMR
|
- name: Miner | Facts | Config File | Load XMR
|
||||||
set_fact:
|
set_fact:
|
||||||
wallet_xmr: "{{ lookup('ini', 'xmr, section=null, file={{wallet_file_local}}') }}"
|
wallet_xmr: "{{ lookup('ini', 'xmr, section=null, file={{wallet_file_local}}') }}"
|
||||||
when: wallet_file_local is file
|
when: wallet_file_local is file
|
||||||
|
ignore_errors: yes
|
||||||
|
- name: Miner | Facts | Config File | Load XMR
|
||||||
|
set_fact:
|
||||||
|
wallet_xmr: "{{ lookup('ini', 'xmr, section=wallet, file={{wallet_file_local}}') }}"
|
||||||
|
when: wallet_file_local is file
|
||||||
|
ignore_errors: yes
|
||||||
|
- name: Miner | Facts | Config File | Load XMR
|
||||||
|
set_fact:
|
||||||
|
wallet_xmr: "{{ lookup('ini', 'xmr, section=global, file={{wallet_file_local}}') }}"
|
||||||
|
when: wallet_file_local is file
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: Miner | Facts | Config File | Load ETH
|
||||||
|
set_fact:
|
||||||
|
wallet_eth: "{{ lookup('ini', 'eth, file={{wallet_file_local}}') }}"
|
||||||
|
when: wallet_file_local is file
|
||||||
|
ignore_errors: yes
|
||||||
- name: Miner | Facts | Config File | Load ETH
|
- name: Miner | Facts | Config File | Load ETH
|
||||||
set_fact:
|
set_fact:
|
||||||
wallet_eth: "{{ lookup('ini', 'eth, section=null, file={{wallet_file_local}}') }}"
|
wallet_eth: "{{ lookup('ini', 'eth, section=null, file={{wallet_file_local}}') }}"
|
||||||
when: wallet_file_local is file
|
when: wallet_file_local is file
|
||||||
|
ignore_errors: yes
|
||||||
|
- name: Miner | Facts | Config File | Load ETH
|
||||||
|
set_fact:
|
||||||
|
wallet_eth: "{{ lookup('ini', 'eth, section=wallet, file={{wallet_file_local}}') }}"
|
||||||
|
when: wallet_file_local is file
|
||||||
|
ignore_errors: yes
|
||||||
|
- name: Miner | Facts | Config File | Load ETH
|
||||||
|
set_fact:
|
||||||
|
wallet_eth: "{{ lookup('ini', 'eth, section=global, file={{wallet_file_local}}') }}"
|
||||||
|
when: wallet_file_local is file
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
|
||||||
## Verify ##
|
## Verify ##
|
||||||
@ -24,4 +56,4 @@
|
|||||||
var: "{{ item }}"
|
var: "{{ item }}"
|
||||||
loop:
|
loop:
|
||||||
- wallet_xmr
|
- wallet_xmr
|
||||||
- wallet_eth
|
- wallet_eth
|
||||||
|
Loading…
x
Reference in New Issue
Block a user