Version information
released Aug 20th 2015
Start using this module
Add this module to your Puppetfile:
mod 'leonardothibes-zf', '1.0.6'
Learn more about managing modules with a PuppetfileDocumentation
leonardothibes/zf — version 1.0.6 Aug 20th 2015
puppet-zf
A Puppet module that installs Zend Framework 1.x.x and 2.x.x.
Sample Usage
Install zf and use the provided configuration defaults:
node default {
class {'zf':} //Default version is 1.12.3
}
or
node default {
include zf //Default version is 1.12.3
}
Install diferent version:
node default {
class {'zf':
ensure => present,
version => '1.11.11',
}
}
or
node default {
class {'zf':
ensure => present,
version => '2.2.5',
}
}
or yet
node default {
class {'zf':
ensure => present,
version => latest, //To get a last version
}
}
Install Zend Tool:
node default {
class {'zf':
ensure => present,
ztool => true,
}
}
Uninstall zf:
node default {
class {'zf':
ensure => absent,
}
}
Contact
Principal developer: Leonardo Thibes => eu@leonardothibes.com
Support
Please log tickets and issues at our Projects site
2015-08-20 Leonardo Thibes eu@leonardothibes.com - 1.0.6
Fabian fn808ns@gmail.com (1):
- Param for making dependencies optional
2014-04-10 Leonardo Thibes eu@leonardothibes.com - 1.0.5
Leonardo Thibes eu@leonardothibes.com (1):
- Garantindo chmod de leitura para todos os usuário após download #4
2014-01-23 Leonardo Thibes eu@leonardothibes.com - 1.0.4
Leonardo Thibes eu@leonardothibes.com (1):
- Implementando a obtensão da última versão #3
2014-01-23 Leonardo Thibes eu@leonardothibes.com - 1.0.3
Leonardo Thibes eu@leonardothibes.com (2):
- Retirando o verbose do tar que descompacta o framework #1
- Adicionando compatibilidade com o Zend Framework 2 #2
2014-01-08 Leonardo Thibes eu@leonardothibes.com - 1.0.2
Leonardo Thibes eu@leonardothibes.com (1):
- Fix install package duplicate declarations
2013-12-18 Leonardo Thibes eu@leonardothibes.com - 1.0.1
Leonardo Thibes eu@leonardothibes.com (1):
- Update nos exemplos
2013-12-18 Leonardo Thibes eu@leonardothibes.com - 1.0.0
Leonardo Thibes eu@leonardothibes.com (1):
- Implementando as classes do módulo
Dependencies
- puppetlabs-stdlib (>= 1.0.0)
- leonardothibes-wget (>= 1.0.0)
LICENSE ======= Copyright (c) 2013-2014 Leonardo Thibes TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.