Re: [Puppet Users] questions about verifying template paths and variables with rspec

2013-09-23 Thread Ashley Gould
On Wed, Sep 18, 2013 at 09:52:27AM -0700, Corey Osman wrote: > Hi, > > How can I verify the template exists in the given path? Example, > > Given the following in my manifest: > > if $somevar == 'true' { > $templatefile='mymodule/mytemplate.xml.erb' > } > else { > $templatefile='mym

[Puppet Users] questions about verifying template paths and variables with rspec

2013-09-18 Thread Corey Osman
Hi, How can I verify the template exists in the given path? Example, Given the following in my manifest: if $somevar == 'true' { $templatefile='mymodule/mytemplate.xml.erb' } else { $templatefile='mymodule/mytemplate2.xml.erb' } file{"somefile.txt": ensure => present,