Vagrant: Add php-ZendFramework-Db-Adapter-Pdo-Pgsql

refs #4443
This commit is contained in:
Eric Lippmann 2013-07-29 18:36:25 +02:00
parent bcf53cbbd5
commit 89a2ad9cb5
1 changed files with 6 additions and 0 deletions

View File

@ -378,3 +378,9 @@ exec{ 'create-pgsql-icinga_unittest-db':
sudo -u postgres createlang plpgsql icinga_unittest',
require => Service['postgresql']
}
exec { 'install php-ZendFramework-Db-Adapter-Pdo-Pgsql':
command => 'yum -d 0 -e 0 -y --enablerepo=epel install php-ZendFramework-Db-Adapter-Pdo-Pgsql',
unless => 'rpm -qa | grep php-ZendFramework-Db-Adapter-Pdo-Pgsql',
require => Exec['install ZendFramework']
}