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"
|
repo: "deb-src http://ftp.us.debian.org/debian stretch contrib non-free"
|
||||||
state: present
|
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
|
- name: Tarsnap Repository Key
|
||||||
apt_key:
|
apt_key:
|
||||||
url: https://pkg.tarsnap.com/tarsnap-deb-packaging-key.asc
|
url: https://pkg.tarsnap.com/tarsnap-deb-packaging-key.asc
|
||||||
@ -76,11 +89,16 @@
|
|||||||
name: clang
|
name: clang
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- name: Install CTags
|
- name: Install ctags
|
||||||
apt:
|
apt:
|
||||||
name: ctags
|
name: ctags
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
|
- name: Install curl
|
||||||
|
apt:
|
||||||
|
name: curl
|
||||||
|
state: latest
|
||||||
|
|
||||||
- name: Install Docker
|
- name: Install Docker
|
||||||
apt:
|
apt:
|
||||||
name: docker-ce
|
name: docker-ce
|
||||||
@ -126,10 +144,10 @@
|
|||||||
name: llvm
|
name: llvm
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
# - name: Install npm
|
- name: Install nodejs
|
||||||
# apt:
|
apt:
|
||||||
# name: npm
|
name: nodejs
|
||||||
# state: latest
|
state: latest
|
||||||
|
|
||||||
- name: Install pandoc
|
- name: Install pandoc
|
||||||
apt:
|
apt:
|
||||||
|
Reference in New Issue
Block a user