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
Ameya Shenoy 348e38f37a
changed node version install from 6 to 8
- broken down the node install into multiple parts based on OS
- change the default node version to be installed from 6 to 8
2018-04-09 15:51:11 +05:30

14 lines
331 B
YAML

---
# Install's prerequisites, like fonts, image libraries, vim, screen, python-dev and gcc
- 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
...