Last active
May 5, 2017 21:56
-
-
Save jeremyquinton/5e78a8ffa7f73052e4835139d3c56f94 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Add ppa Repository | |
sudo: yes | |
apt_repository: | |
repo=ppa:ondrej/mysql-5.7 | |
- name: Update apt | |
sudo: yes | |
apt: update_cache=yes | |
- name: mysql | Install MySQL Packages | |
sudo: yes | |
apt: pkg={{ item }} state=latest | |
with_items: | |
- mysql-server | |
- mysql-client | |
- python-mysqldb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment