diff options
author | varac <varacanero@zeromail.org> | 2012-12-14 16:20:29 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2012-12-14 16:20:29 +0100 |
commit | 4639b19a10d0fc2e1562a2135fe1b33b70571155 (patch) | |
tree | 3cf2ffc4ab8d72e890577926448863f0a60c78b7 /puppet/modules/site_apt/manifests | |
parent | b37f6e28a42304cabc87431d48c15a46cf9b0444 (diff) |
moved site_config::apt to site_apt
Diffstat (limited to 'puppet/modules/site_apt/manifests')
-rw-r--r-- | puppet/modules/site_apt/manifests/init.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/puppet/modules/site_apt/manifests/init.pp b/puppet/modules/site_apt/manifests/init.pp new file mode 100644 index 00000000..7f8b09a1 --- /dev/null +++ b/puppet/modules/site_apt/manifests/init.pp @@ -0,0 +1,8 @@ +class site_apt { + + include ::apt + + apt::apt_conf { '90disable-pdiffs': + content => 'Acquire::PDiffs "false";'; + } +} |