Commit 97bd110b by arbabnazar

OPS-1278 Create role to install MySQL locally that is not experimental

parent e38e8747
--- ---
dependencies: dependencies:
- common - common_vars
--- ---
- name: Add MySQL community apt key - name: Look for mysql 5.6
apt_key: shell: dpkg -L mysql-server-5.6
id: 8C718D3B5072E1F5 ignore_errors: yes
keyserver: "{{ COMMON_EDX_PPA_KEY_SERVER }}" register: mysql_56_installed
state: present
- include: mysql.yml
- name: Install MySQL community apt repositories when: mysql_56_installed.rc == 1
apt_repository: \ No newline at end of file
repo: "{{ item }}"
update_cache: yes
with_items:
- "deb http://repo.mysql.com/apt/ubuntu/ precise mysql-5.6"
- "deb-src http://repo.mysql.com/apt/ubuntu/ precise mysql-5.6"
- name: Install mysql-5.6 and dependencies
apt:
name: "{{ item }}"
install_recommends: yes
update_cache: yes
state: present
with_items: mysql_debian_pkgs
- name: Start mysql
service:
name: mysql
state: started
- name: Ensure Anonymous user(s) does not exist
mysql_user:
name: ''
host: "{{ item }}"
state: absent
with_items:
- localhost
- "{{ ansible_hostname }}"
---
- name: Add MySQL community apt key
apt_key:
id: 8C718D3B5072E1F5
keyserver: "{{ COMMON_EDX_PPA_KEY_SERVER }}"
state: present
- name: Install MySQL community apt repositories
apt_repository:
repo: "{{ item }}"
update_cache: yes
with_items:
- "deb http://repo.mysql.com/apt/ubuntu/ precise mysql-5.6"
- "deb-src http://repo.mysql.com/apt/ubuntu/ precise mysql-5.6"
- name: Install mysql-5.6 and dependencies
apt:
name: "{{ item }}"
install_recommends: yes
update_cache: yes
state: present
with_items: mysql_debian_pkgs
- name: Start mysql
service:
name: mysql
state: started
- name: Ensure Anonymous user(s) does not exist
mysql_user:
name: ''
host: "{{ item }}"
state: absent
with_items:
- localhost
- "{{ ansible_hostname }}"
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