Update 'roles/shell/tasks/packages.yml'
This commit is contained in:
parent
072a16c5af
commit
4727d79d84
|
@ -16,6 +16,12 @@
|
||||||
url: http://debian.drdteam.org/drdteam.gpg
|
url: http://debian.drdteam.org/drdteam.gpg
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
- name: Add apt key for mono-project
|
||||||
|
apt_key:
|
||||||
|
keyserver: hkp://keyserver.ubuntu.com:80
|
||||||
|
id: 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
|
||||||
|
state: present
|
||||||
|
|
||||||
- name: Add weechat repo
|
- name: Add weechat repo
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: 'deb https://weechat.org/debian stretch main'
|
repo: 'deb https://weechat.org/debian stretch main'
|
||||||
|
@ -34,12 +40,19 @@
|
||||||
repo: 'deb http://debian.drdteam.org/ stable multiverse'
|
repo: 'deb http://debian.drdteam.org/ stable multiverse'
|
||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
|
||||||
- name: Add debian contrib
|
- name: Add debian contrib
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: 'deb http://ftp.de.debian.org/debian stretch main contrib'
|
repo: 'deb http://ftp.de.debian.org/debian stretch main contrib'
|
||||||
state: present
|
state: present
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
|
||||||
|
- name: Add mono-project repo
|
||||||
|
apt_repository:
|
||||||
|
repo: 'deb https://download.mono-project.com/repo/debian stable-stretch main'
|
||||||
|
state: present
|
||||||
|
update_cache: yes
|
||||||
|
|
||||||
- name: Install baseline packages
|
- name: Install baseline packages
|
||||||
apt:
|
apt:
|
||||||
name: "{{ packages }}"
|
name: "{{ packages }}"
|
||||||
|
|
Loading…
Reference in New Issue