This file contains hidden or 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
--- | |
- hosts: hou-dc-repo | |
tasks: | |
- name: confirm apache createrepo rsync installed | |
yum: name={{item}} state=installed | |
with_items: | |
- httpd | |
- createrepo | |
- rsync | |
- name: create dirs for centos6 and EPEL repo |
This file contains hidden or 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
#!/bin/bash | |
#Bash script to create a local YUM repository for MySQL Commercial RPMs in Enterprise Linux 7.x. | |
#You can find the commercial binaries in http://support.oracle.com (preferable) or http://edelivery.oracle.com. | |
#Download the ZIP files into the $DOWNLOAD_DIR and run this script as root. | |
#The files to be downloaded are: | |
# MySQL Database 5.7.* RPM for Oracle Linux / RHEL 7 x86 (64bit) | |
# MySQL Enterprise Backup 4.1.* RPM for Oracle Linux / RHEL 7 x86 (64bit) | |
# MySQL Shell 1.0.* RPM for Oracle Linux / RHEL 7 x86 (64bit) | |
# MySQL Router 2.1.* RPM for Oracle Linux / RHEL 7 x86 (64bit) |
This file contains hidden or 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
#!/bin/bash | |
#Bash script to create a local YUM repository for MySQL Commercial RPMs in Enterprise Linux 7.x. | |
#You can find the commercial binaries in http://support.oracle.com (preferable) or http://edelivery.oracle.com. | |
#Download the ZIP files into the $DOWNLOAD_DIR and run this script as root. | |
#The files to be downloaded are: | |
# MySQL Database 5.7.* RPM for Oracle Linux / RHEL 7 x86 (64bit) | |
# MySQL Enterprise Backup 4.1.* RPM for Oracle Linux / RHEL 7 x86 (64bit) | |
# MySQL Shell 1.0.* RPM for Oracle Linux / RHEL 7 x86 (64bit) | |
# MySQL Router 2.1.* RPM for Oracle Linux / RHEL 7 x86 (64bit) |