From 607b0fc0c4c46b717b3d138eddad42ca357ba1ff Mon Sep 17 00:00:00 2001 From: Alexander Klimov Date: Mon, 24 Nov 2014 14:44:17 +0100 Subject: [PATCH] icingaweb2_dev: include and require Class[icinga_packages] refs #6842 --- .vagrant-puppet/profiles/icingaweb2_dev/manifests/init.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vagrant-puppet/profiles/icingaweb2_dev/manifests/init.pp b/.vagrant-puppet/profiles/icingaweb2_dev/manifests/init.pp index e3271d989..aa2d1317f 100644 --- a/.vagrant-puppet/profiles/icingaweb2_dev/manifests/init.pp +++ b/.vagrant-puppet/profiles/icingaweb2_dev/manifests/init.pp @@ -3,6 +3,7 @@ class icingaweb2_dev { include php include icingaweb2 include icingacli + include icinga_packages class { 'zend_framework': notify => Service['apache'], @@ -11,6 +12,7 @@ class icingaweb2_dev { package { [ 'php-pdo', 'php-ldap', 'php-phpunit-PHPUnit', 'icinga-gui' ]: ensure => latest, notify => Service['apache'], + require => Class['icinga_packages'], } Exec { path => '/usr/local/bin:/usr/bin:/bin' }