src.nth.io/

summaryrefslogtreecommitdiff
path: root/node/install/tasks
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-05-03 15:55:50 -0500
committerLuke Hoersten <[email protected]>2020-05-03 15:55:50 -0500
commit2f9e565b2b3523e5d3d6454d8eda99e8ced78c87 (patch)
tree41902bcc6feebb776d74e91443e64e76a29fae2d /node/install/tasks
parent63fa0e3648592ae6df8e2ea96edb1c9650af7cce (diff)
Made btcd and lnd arch changeable.
Diffstat (limited to 'node/install/tasks')
-rw-r--r--node/install/tasks/main.yaml9
1 files changed, 7 insertions, 2 deletions
diff --git a/node/install/tasks/main.yaml b/node/install/tasks/main.yaml
index c8b162f..7d95dbb 100644
--- a/node/install/tasks/main.yaml
+++ b/node/install/tasks/main.yaml
@@ -14,5 +14,10 @@
- name: install node
become: yes
- shell: "install -m 0755 -o {{node_install_user}} -g {{node_install_user}} -t /usr/local/bin /tmp/{{node_install_tar_name}}/*"
- changed_when: false
+ copy:
+ src: "/tmp/{{node_install_tar_name}}/"
+ dest: "/usr/local/bin/"
+ remote_src: yes
+ owner: "root"
+ group: "root"
+ mode: "0755"