Add nodejs
This commit is contained in:
parent
f656324cec
commit
8cfd92bb1d
28
debian.yml
28
debian.yml
@ -25,6 +25,19 @@
|
||||
repo: "deb-src http://ftp.us.debian.org/debian stretch contrib non-free"
|
||||
state: present
|
||||
|
||||
- name: Node.js Repository Key
|
||||
apt_key:
|
||||
url: https://deb.nodesource.com/gpgkey/nodesource.gpg.key
|
||||
state: present
|
||||
- name: Node.js Repository
|
||||
apt_repository:
|
||||
repo: "deb https://deb.nodesource.com/node_6.x jessie main"
|
||||
state: present
|
||||
- name: Node.js Src Repository
|
||||
apt_repository:
|
||||
repo: "deb-src https://deb.nodesource.com/node_6.x jessie main"
|
||||
state: present
|
||||
|
||||
- name: Tarsnap Repository Key
|
||||
apt_key:
|
||||
url: https://pkg.tarsnap.com/tarsnap-deb-packaging-key.asc
|
||||
@ -76,11 +89,16 @@
|
||||
name: clang
|
||||
state: latest
|
||||
|
||||
- name: Install CTags
|
||||
- name: Install ctags
|
||||
apt:
|
||||
name: ctags
|
||||
state: latest
|
||||
|
||||
- name: Install curl
|
||||
apt:
|
||||
name: curl
|
||||
state: latest
|
||||
|
||||
- name: Install Docker
|
||||
apt:
|
||||
name: docker-ce
|
||||
@ -126,10 +144,10 @@
|
||||
name: llvm
|
||||
state: latest
|
||||
|
||||
# - name: Install npm
|
||||
# apt:
|
||||
# name: npm
|
||||
# state: latest
|
||||
- name: Install nodejs
|
||||
apt:
|
||||
name: nodejs
|
||||
state: latest
|
||||
|
||||
- name: Install pandoc
|
||||
apt:
|
||||
|
Reference in New Issue
Block a user