On 12/12/2014 11:01 PM, Josh Cooper wrote: > > path => [ $local_appdata, $path ] > > The semicolon would end the resource declaration I believe. > > > Actually it supports both! So either an array or a string whose > components are delimited with the platform-specific separator: > https://github.com/puppetlabs/puppet/blob/master/lib/puppet/type/exec.rb#L181-L192
Ah, I see. The native form should be quoted in this case, though. Otherwise, the parser will misinterpret the semicolon. path => "$::local_appdata;$path" -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/548B7B45.30105%40Alumni.TU-Berlin.de. For more options, visit https://groups.google.com/d/optout.
