mirror of
https://github.com/geerlingguy/ansible-for-devops.git
synced 2024-05-19 06:50:03 +00:00
7 lines
210 B
YAML
7 lines
210 B
YAML
---
|
|
- name: Install Node.js (npm plus all its dependencies).
|
|
dnf: name=npm state=present enablerepo=epel
|
|
|
|
- name: Install forever module (to run our Node.js app).
|
|
npm: name=forever global=yes state=present
|