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

12 lines
241 B
YAML

---
- include_tasks: debian_family.yml
when: ansible_os_family == 'Debian'
- include_tasks: redhat_family.yml
when: ansible_os_family == "RedHat"
- name: Install yarn
command: npm install -g yarn
become: yes
become_user: root
...