https://github.com/masonm/repo_mysql
Puppet module to install the Mysql Yum repository
https://github.com/masonm/repo_mysql
Last synced: 4 months ago
JSON representation
Puppet module to install the Mysql Yum repository
- Host: GitHub
- URL: https://github.com/masonm/repo_mysql
- Owner: MasonM
- Created: 2013-11-11T01:08:29.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-19T16:35:29.000Z (almost 12 years ago)
- Last Synced: 2025-02-21T16:19:51.940Z (over 1 year ago)
- Language: Puppet
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
Installs the [MySQL community server Yum repository](http://dev.mysql.com/downloads/repo/)
on Redhat-based (RHEL, CentOS, Fedora) operating systems.
# Usage
To use the repository for the latest release series, just include "repo\_mysql":
```puppet
include repo_mysql
```
To select a release series (e.g. "5.6"), set the "release\_series" parameter:
```puppet
class { "repo_mysql":
release_series => "5.6",
}
```
To install the MySQL server and client from this repo, use the package names `mysql-community-server`
and `mysql-community-client`, respectively. For example:
```puppet
package { 'mysql-community-server':
ensure => 'latest',
}
```
# License
Apache Software License 2.0