Consider the following
file java/manifests/setup.pp
define java::setup (
$source = undef,){
file { $cachedir:
ensure => 'directory',
owner => 'root',
group => 'root',
mode => '644'
}
file { "${cachedir}/${source}":
source => "puppet:///modules/${module_name}/${source}",
require => File[$cachedir],
}
# stripped out for readability
}
file mywebapp/manifests/init.pp
# stripped out for readability
java::setup { 'mywebapp-java':
source => 'jdk-7u7-linux-x64.gz',
}
# stripped out for readability
I want the source to be constructed
as puppet:///modules/mywebapp/jdk-7u7-linux-x64.gz instead of
puppet:///modules/java/jdk-7u7-linux-x64.gz
~Francis
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.