Added cryptpad role
This commit is contained in:
10
roles/common/tasks/tools.yml
Normal file
10
roles/common/tasks/tools.yml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
- name: use Node
|
||||
when: node_version is defined
|
||||
block:
|
||||
- name: check used version
|
||||
command: uberspace tools version show node
|
||||
register: used_node
|
||||
- name: update used version
|
||||
command: uberspace tools version use node {{ node_version }}
|
||||
when: used_node.stdout.find(node_version|string) == -1
|
||||
Reference in New Issue
Block a user