Re: [Puppet Users] "problem" with windows client

2014-12-12 Thread Felix Frank
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://g

Re: [Puppet Users] "problem" with windows client

2014-12-12 Thread Josh Cooper
On Fri, Dec 12, 2014 at 1:49 PM, Felix Frank < felix.fr...@alumni.tu-berlin.de> wrote: > On 12/12/2014 07:03 PM, Josh Cooper wrote: > > The constants are defined in the win32-dir gem[1]. > > > > Aweseome! > > > path => $::local_appdata;$path > > Wait, shouldn't this be > > path => [ $local_appda

Re: [Puppet Users] "problem" with windows client

2014-12-12 Thread Felix Frank
On 12/12/2014 07:03 PM, Josh Cooper wrote: > The constants are defined in the win32-dir gem[1]. > Aweseome! > path => $::local_appdata;$path Wait, shouldn't this be path => [ $local_appdata, $path ] The semicolon would end the resource declaration I believe. Cheers, Felix -- You received

Re: [Puppet Users] "problem" with windows client

2014-12-12 Thread Josh Cooper
On Wed, Dec 10, 2014 at 1:35 AM, Gianmarco Carrieri < gianmarco.carri...@gmail.com> wrote: > Hi all, > > sorry if this is a repost, i need to use a windows env in the > configuration of puppet. > > this is a piece of my conf: > > file { "Mozilla": > ensure => "directory", >

[Puppet Users] "problem" with windows client

2014-12-10 Thread Gianmarco Carrieri
Hi all, sorry if this is a repost, i need to use a windows env in the configuration of puppet. this is a piece of my conf: file { "Mozilla": ensure => "directory", recurse => "true", path => "%appdata%", purge => true,