Update 'roles/shell/tasks/packages.yml'

This commit is contained in:
Anton McClure 2019-03-13 16:50:45 -04:00
parent 072a16c5af
commit 4727d79d84
1 changed files with 13 additions and 0 deletions

View File

@ -16,6 +16,12 @@
url: http://debian.drdteam.org/drdteam.gpg
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
apt_repository:
repo: 'deb https://weechat.org/debian stretch main'
@ -34,12 +40,19 @@
repo: 'deb http://debian.drdteam.org/ stable multiverse'
state: present
update_cache: yes
- name: Add debian contrib
apt_repository:
repo: 'deb http://ftp.de.debian.org/debian stretch main contrib'
state: present
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
apt:
name: "{{ packages }}"