简体   繁体   中英

Puppet and composer project

A small puppet question

I am creating a composer project like so.

composer::project { 'project-test':
  ensure  => 'latest', #or installed?
  target => '/home/test/www',
  dev => false,
  require => Package ['php', 'apache']
}

And then from an exec I want to require it as a resource. How can I?

Example of exec:

exec { 'generate-tests' :
  command => 'php tests.php',
  path => '/usr/bin/',
  cwd => "/home/test/www/bin",
  logoutput => 'true',
  #require => composer::project['project-test']
}

由于您需要的是资源,因此应将其大写如下:

require => Composer::Project['project-test']

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM