From 20ea4fd334d0623f1d98d5940687ccff9624e8cf Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 15 Feb 2021 15:28:16 -0600 Subject: [PATCH] Try with variable inside single quotes. --- facts/miner/wallet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/facts/miner/wallet.yml b/facts/miner/wallet.yml index e368478..7298091 100644 --- a/facts/miner/wallet.yml +++ b/facts/miner/wallet.yml @@ -8,11 +8,11 @@ - name: Miner | Facts | Config File | Load XMR set_fact: - wallet_xmr: "{{ lookup('ini', 'section=xmr, file='wallet_file_local) }}" + wallet_xmr: "{{ lookup('ini', 'section=xmr, file=wallet_file_local') }}" - name: Miner | Facts | Config File | Load ETH set_fact: - wallet_eth: "{{ lookup('ini', 'section=eth, file='wallet_file_local) }}" + wallet_eth: "{{ lookup('ini', 'section=eth, file=wallet_file_local') }}" ## Verify ##