Re: [Puppet Users] managing svn on client side and exec question

2010-10-07 Thread Arnau Bria
On Thu, 07 Oct 2010 11:59:29 +0200 Felix Frank wrote: Hi Felix, > > exec { > > 'svn_check_out' : > > cwd => '/opt/localconf', > > command => 'svn co svn://repo/', > > create => '/opt/localconf/repo', > > require => Files['localconf'], > > } > I'd rather define a sensible creates (note

Re: [Puppet Users] managing svn on client side and exec question

2010-10-07 Thread Felix Frank
On 10/07/2010 11:46 AM, Arnau Bria wrote: > Hi all, > > I'm changing my code and I'd like to control a entire tree by svn and > not puppet fileserver (we're trying to decrease puppet load). > So I've created a copule of execs, one for svn checkout the other for > svn update. > > svn checkout look

[Puppet Users] managing svn on client side and exec question

2010-10-07 Thread Arnau Bria
Hi all, I'm changing my code and I'd like to control a entire tree by svn and not puppet fileserver (we're trying to decrease puppet load). So I've created a copule of execs, one for svn checkout the other for svn update. svn checkout looks like: exec { 'svn_check_out' : cwd => '/opt/local