Add puppet/archive module
[mirror/dsa-puppet.git] / 3rdparty / modules / archive / examples / remote_checksum.pp
1 include '::archive'
2
3 archive { '/tmp/hawtio-web-1.4.36.jar':
4   ensure        => present,
5   extract       => false,
6   extract_path  => '/tmp',
7   source        => 'https://oss.sonatype.org/service/local/artifact/maven/content?g=io.hawt&a=hawtio-web&v=1.4.36&p=war&r=releases',
8   checksum_url  => 'https://oss.sonatype.org/service/local/artifact/maven/content?g=io.hawt&a=hawtio-web&v=1.4.36&p=war.md5&r=releases',
9   checksum_type => 'md5',
10 }