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

5 lines
119 B
YAML

---
- name: Install node v{{ node_version }}
yum: name=nodejs state=present
when: ansible_os_family == 'RedHat'
...