add role nodejs

This commit is contained in:
Julian Labus 2018-09-11 14:14:23 +02:00
parent 51c5330e36
commit 0153384d76
No known key found for this signature in database
GPG key ID: 8AF209F2C6B3572A

View file

@ -0,0 +1,18 @@
---
- name: ensure apt key for nodejs is present
apt_key:
state: present
id: 68576280
url: "https://deb.nodesource.com/gpgkey/nodesource.gpg.key"
- name: ensure nodejs apt repo is present
apt_repository:
state: present
repo: "deb https://deb.nodesource.com/node_8.x stretch main"
update_cache: yes
filename: nodesource
- name: install nodejs package
package:
name: nodejs
state: present