Hello
I am trying to download an extract archive. For that I use the puppet-archive module from camptocamp.
Download and extraction works fine but the extraction is happening on every puppet run.
The extraction needs a lot of time. Somebody knows how to extract the archive just ones?
archive {"mySource-${mySource_version}":
ensure => present,
url => "ftp://mySource.edu/pub/mySource-${mySource_version}.tar.gz",
target => "/mySource_data/src/mySource-${mySource_version}",
extension => 'tar.gz',
checksum => true,
src_target => '/tmp',
user => 'mySourceuser',
timeout => 7200,
}->
↧