2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-24 13:09:01 +00:00
bench/playbooks/roles/nodejs/tasks/debian_family.yml
2018-07-03 13:31:13 +05:30

8 lines
129 B
YAML

---
- name: Install nodejs {{ node_version }}
apt:
name: nodejs
state: present
update_cache: yes
force: yes
...