example42 / puppet-php

A puppet module for php. According to Example42 NextGen spec.
Other
45 stars 62 forks source link

Error: Could not find dependent Service[nginx] for File[php.conf] at .. #95

Closed leshiynyc closed 9 years ago

leshiynyc commented 9 years ago

Hi,

I am trying to do something like this :

class { 'php':  service => 'nginx'  }
php::pecl::module { 'mongo': } 

and keep getting the following error during catalog compilation : Error: Could not find dependent Service[nginx] for File[php.conf] at ..

alvagante commented 9 years ago

If you specify service => 'nginx' the module expects that you have nginx installed and managed in some way , with a relevant service resource.

leshiynyc commented 9 years ago

@alvagante thanks !