An open API service indexing awesome lists of open source software.

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

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