On Wednesday, April 24, 2013 2:24:08 PM UTC-7, Larry Fast wrote:
>
>
> Is there a standard puppet pattern for removing older versions of jars 
> without explicitly naming each version?
>
>  
Yes! The tidy resource type. 

http://docs.puppetlabs.com/references/latest/type.html#tidy

You'd want something like this: 

tidy {'/tmp/jars':
  recurse => true,
  matches => "my_jar.*.jar",
}

This example would kill all files matching that shell glob pattern UNLESS 
there's already a puppet resource for them, so it would leave the latest 
version intact. (I just tested it to make sure that's the case.)

-- 
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 puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to