mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-12 18:50:11 +02:00
25 lines
377 B
Puppet
25 lines
377 B
Puppet
# Class: zend_framework
|
|
#
|
|
# This class installs the Zend Framework.
|
|
#
|
|
# Requires:
|
|
#
|
|
# epel
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
# include zend_framework
|
|
#
|
|
class zend_framework {
|
|
include epel
|
|
|
|
package { [
|
|
'php-ZendFramework',
|
|
'php-ZendFramework-Db-Adapter-Pdo-Mysql',
|
|
'php-ZendFramework-Db-Adapter-Pdo-Pgsql'
|
|
]:
|
|
ensure => latest,
|
|
require => Class['epel'],
|
|
}
|
|
}
|