src.nth.io/

summaryrefslogtreecommitdiff
path: root/node
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-05-01 17:00:59 -0500
committerLuke Hoersten <[email protected]>2020-05-01 17:00:59 -0500
commit63fa0e3648592ae6df8e2ea96edb1c9650af7cce (patch)
treed7a719ae1d0bc1b0dea65a58934b5d2094cee407 /node
parent99575d0d007feb9ba97109be94e7ee5230bb40ce (diff)
Expose lnd and btcd to listening public ip.
Diffstat (limited to 'node')
-rw-r--r--node/install/tasks/main.yaml10
1 files changed, 2 insertions, 8 deletions
diff --git a/node/install/tasks/main.yaml b/node/install/tasks/main.yaml
index 22059f6..c8b162f 100644
--- a/node/install/tasks/main.yaml
+++ b/node/install/tasks/main.yaml
@@ -4,17 +4,11 @@
become: yes
user: name="{{node_install_user}}"
-- name: download node
- become: yes
- get_url:
- url: "{{node_install_url}}"
- dest: "/tmp/{{node_install_tar}}"
-
- name: unarchive node
become: yes
unarchive:
- remote_src: "yes"
- src: "/tmp/{{node_install_tar}}"
+ remote_src: yes
+ src: "{{node_install_url}}"
dest: "/tmp"
creates: "/tmp/{{node_install_tar_name}}/"