Re: [Puppet Users] Puppet file copy

2012-09-04 Thread Bai Shen
Along with everything else that was pointed out, it turned out that I was using a node with the same name as my module, and therefore it was not being called. On Fri, Aug 31, 2012 at 2:23 PM, Josh Cooper wrote: > On Fri, Aug 31, 2012 at 10:03 AM, Ramin K wrote: > > On 8/31/2012 7:18 AM, Bai She

Re: [Puppet Users] Puppet file copy

2012-08-31 Thread Josh Cooper
On Fri, Aug 31, 2012 at 10:03 AM, Ramin K wrote: > On 8/31/2012 7:18 AM, Bai Shen wrote: >> class solr { >> file { '/opt/apache-tomcat/conf/Catalina/localhost': >> source => 'puppet://modules/solr/solr.xml', That should be puppet:///modules/solr/solr.xml The way to thi

Re: [Puppet Users] Puppet file copy

2012-08-31 Thread Dick Davies
isn't /opt/apache-tomcat/conf/Catalina/localhost a directory? You should still get output saying that on a puppet agent run though. On 31 August 2012 15:18, Bai Shen wrote: > I'm trying to install solr using puppet. I have a module installing tomcat. > Now I'm trying to make another module that

Re: [Puppet Users] Puppet file copy

2012-08-31 Thread Ramin K
On 8/31/2012 7:18 AM, Bai Shen wrote: I'm trying to install solr using puppet. I have a module installing tomcat. Now I'm trying to make another module that installs the solr files. However, it's not copying the file. Any ideas what I'm doing wrong? init.pp: class solr { file { '/op