Skip to content

Instantly share code, notes, and snippets.

@SNET-ARCH
SNET-ARCH / makerepo.yaml
Created May 14, 2020 17:37 — forked from cecil/makerepo.yaml
ansible playbook to create a local yum http repo
---
- 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
@SNET-ARCH
SNET-ARCH / provision-mysql57-commercial-yum-repo-el7.sh
Created May 19, 2020 01:05 — forked from alastori/provision-mysql57-commercial-yum-repo-el7.sh
Bash script to create a local YUM repository for MySQL Commercial RPMs in Enterprise Linux 7.x.
#!/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)
@SNET-ARCH
SNET-ARCH / provision-mysql57-commercial-yum-repo-el7.sh
Created May 19, 2020 01:05 — forked from alastori/provision-mysql57-commercial-yum-repo-el7.sh
Bash script to create a local YUM repository for MySQL Commercial RPMs in Enterprise Linux 7.x.
#!/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)