Commit f3d593b3 by arbabnazar Committed by Ned Batchelder

DEVOPS-3451 The mysql 5.6 ppa for precise is gone: fix needed

parent 69170e4e
# Installs packages to run edx locally on a single instance
# requires:
# - group_vars/all
# - common/tasks/main.yml
#
# This installs mysql-server-5.6
#
---
- name: Install PPA for installing MySQL 5.6 on Ubuntu 12.04LTS
apt_key:
id: E5267A6C
url: '{{ COMMON_UBUNTU_APT_KEYSERVER }}0x14AA40EC0831756756D7F66C4F4EA0AAE5267A6C'
state: present
- name: install apt repository
- name: Install apt repository
apt_repository:
repo: 'deb http://ppa.launchpad.net/ondrej/mysql-5.6/ubuntu precise main'
repo: 'deb http://ppa.launchpad.net/ondrej/mysql-experimental/ubuntu precise main'
update_cache: yes
- name: install mysql 56 and dependencies
......@@ -33,11 +20,6 @@
with_items:
- localhost
- "{{ ansible_hostname }}"
- name: Remove the test database
mysql_db:
name: test
state: absent
- name: start mysql
service:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment