You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've created the following manifest, called test.pp:
include epel
include puppi
Class['epel'] -> Class['puppi']
puppi::project::archive { 'jira':
source => 'http://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-6.1.5.tar.gz',
deploy_root => '/opt',
auto_deploy => true,
}
When I run puppet apply test.pp, Puppet runs, installs puppi and its dependencies, creates the project, but does not actually install anything to /opt. If I run puppi, I can see the "jira" project listed under "Available deploy projects" and, if I run puppi deploy jira, the project is deployed to /opt. I can't seem to get the project to deploy through Puppet, though. What am I doing wrong?
Thanks.
The text was updated successfully, but these errors were encountered:
I've created the following manifest, called test.pp:
When I run
puppet apply test.pp
, Puppet runs, installs puppi and its dependencies, creates the project, but does not actually install anything to /opt. If I runpuppi
, I can see the "jira" project listed under "Available deploy projects" and, if I runpuppi deploy jira
, the project is deployed to /opt. I can't seem to get the project to deploy through Puppet, though. What am I doing wrong?Thanks.
The text was updated successfully, but these errors were encountered: