src.nth.io/

summaryrefslogtreecommitdiff
path: root/node/install/tasks
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-05-12 19:47:57 -0500
committerLuke Hoersten <[email protected]>2020-05-12 19:47:57 -0500
commit20f74df71e4223591d5a26010df575c99ad3dc43 (patch)
tree531e4a2f0594ed17023f0f430c3c8a0bc66fb293 /node/install/tasks
parente15954d16ab8fa98faae42afd828dd2a55324ba7 (diff)
Removed btcd role and combined lnd role.
Diffstat (limited to 'node/install/tasks')
-rw-r--r--node/install/tasks/main.yaml23
1 files changed, 0 insertions, 23 deletions
diff --git a/node/install/tasks/main.yaml b/node/install/tasks/main.yaml
deleted file mode 100644
index 7d95dbb..0000000
--- a/node/install/tasks/main.yaml
+++ /dev/null
@@ -1,23 +0,0 @@
----
-
-- name: add node user
- become: yes
- user: name="{{node_install_user}}"
-
-- name: unarchive node
- become: yes
- unarchive:
- remote_src: yes
- src: "{{node_install_url}}"
- dest: "/tmp"
- creates: "/tmp/{{node_install_tar_name}}/"
-
-- name: install node
- become: yes
- copy:
- src: "/tmp/{{node_install_tar_name}}/"
- dest: "/usr/local/bin/"
- remote_src: yes
- owner: "root"
- group: "root"
- mode: "0755"