下载提取和安装的Puppet代码

时间:2016-08-04 13:27:08

标签: puppet

我在某个网址(http://www.somewhere.com/something.tar.gz)上有一个文件。 这是直接下载链接。 我需要一个下载此文件,提取并安装文件的木偶代码。

我们可以在puppet中使用package {}吗?

1 个答案:

答案 0 :(得分:5)

对于理解tarball的包类型,没有真正的内在提供程序。但是,这个VoxPopuli模块:https://forge.puppet.com/puppet/archive最近获得了Puppet认证,应该可以满足您的需求。

根据他们的使用示例,可​​以根据您的需要对其进行修改,例如:

archive { '/tmp/something':
  ensure        => present,
  extract       => true,
  extract_path  => '/tmp',
  source        => 'http://www.somewhere.com/something.tar.gz',
  checksum      => 'checksum hash',
  checksum_type => 'sha1',
  creates       => '/tmp/something',
  cleanup       => true,
}