add mysql repo

This commit is contained in:
Anton McClure 2019-06-04 21:52:59 -04:00
parent 085f7e0d9c
commit 9e6a9cce32
No known key found for this signature in database
GPG Key ID: DC9155FB2EEAA2EF
1 changed files with 12 additions and 0 deletions

View File

@ -22,6 +22,12 @@
id: 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
state: present
- name: Add apt key for mono-project
apt_key:
keyserver: pgp.mit.edu
id: 5072E1F5
state: present
- name: Add weechat repo
apt_repository:
repo: 'deb https://weechat.org/debian stretch main'
@ -53,6 +59,12 @@
state: present
update_cache: yes
- name: Add mysql repo
apt_repository:
repo: 'deb https://repo.mysql.com/apt/debian stretch mysql-8.0'
state: present
update_cache: yes
- name: Install baseline packages
apt:
name: "{{ packages }}"