This cookbook install Remi repo Enterprise Linux.
####Remi Repo
"Providing the latest versions of the PHP stack, and some other software, to the Fedora and Enterprise Linux (RHEL, CentOS, Oracle, Scientific Linux, ...) users. It mainly contains :
packages I also maintains in Fedora
backports of packages available in Fedora development version
some packages incompatible with Fedora policy
some packages in progress before being submitted to Fedora repository
(nearly) vanilla versions
"
The following platforms and versions are tested and supported using Opscode's test-kitchen.
- CentOS 5.8, 6.3
The following platform families are supported in the code, and are assumed to work based on the successful testing on CentOS.
- Red Hat (rhel)
- Fedora
- Amazon Linux
Key | Type | Description | Default |
---|---|---|---|
node['yum'][repo]['enabled'] | Boolean | Enable/Disable Repo | true |
node['yum'][repo]['gpgcheck'] | Boolean | check GPG Cert | true |
node['yum'][repo]['managed'] | Boolean | Enable/Disable managed | true |
repo = w%(remi remi-test remi-php55 remi-php56)
Just include yum-remi
in your node's run_list
:
{
"name":"my_node",
"run_list": [
"recipe[yum-remi]"
]
}
Example enable test repo
"default_attributes": {
"yum": {
"remi-test": {
"gpgcheck": true,
"managed": true,
"enabled": true
}
}
}
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write your change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
Authors: Lucas Mariani (Psyreactor)