-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mysql57ComuEd.yml
50 lines (50 loc) · 1.64 KB
/
Mysql57ComuEd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
- hosts: [dbservers]
become: yes
remote_user: <AD_ID>
become_user: root
tasks:
- name: install MySQL Community common
yum:
name: /tmp/mysql-community-common-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL Community libs
yum:
name: /tmp/mysql-community-libs-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL Community libs compact
yum:
name: /tmp/mysql-community-libs-compat-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL Community DebugInfo
yum:
name: /tmp/mysql-community-minimal-debuginfo-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL Community CLIENT
yum:
name: /tmp/mysql-community-client-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL Community embeded compact
yum:
name: /tmp/mysql-community-embedded-compat-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL Community 5.7.9 libs
yum:
name: /tmp/mysql-community-libs-5.7.9-1.el7.x86_64.rpm
state: present
- name: install MySQL utilities
yum:
name: /tmp/mysql-community-devel-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL Community embeded
yum:
name: /tmp/mysql-community-embedded-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL community SERVER
yum:
name: /tmp/mysql-community-server-5.7.22-1.el7.x86_64.rpm
state: present
- name: install MySQL utilities
yum:
name: /tmp/mysql-utilities-1.6.5-1.el7.noarch.rpm
state: present