Add puppet/archive module, required for newer puppet/rabbitmq
[mirror/dsa-puppet.git] / 3rdparty / modules / archive / examples / archive.pp
1 include '::archive'
2
3 archive { '/tmp/jta-1.1.jar':
4   ensure        => present,
5   extract       => true,
6   extract_path  => '/tmp',
7   source        => 'http://central.maven.org/maven2/javax/transaction/jta/1.1/jta-1.1.jar',
8   checksum      => '2ca09f0b36ca7d71b762e14ea2ff09d5eac57558',
9   checksum_type => 'sha1',
10   creates       => '/tmp/javax',
11   cleanup       => true,
12   user          => 'vagrant',
13   group         => 'vagrant',
14 }