diff options
author | Antoine Beaupré <anarcat@koumbit.org> | 2015-06-11 10:21:56 -0400 |
---|---|---|
committer | Antoine Beaupré <anarcat@koumbit.org> | 2015-06-11 10:26:10 -0400 |
commit | 891aa0fbbed87e24322da7d3a80514f1bf94f0ac (patch) | |
tree | 943df3555a47e2da1e9e388a7c1abba5a042ecb6 /manifests/key | |
parent | 33acc00e5c6d8ab18f2992cccc8ee036b4d7771d (diff) | |
download | puppet-apt-891aa0fbbed87e24322da7d3a80514f1bf94f0ac.tar.gz puppet-apt-891aa0fbbed87e24322da7d3a80514f1bf94f0ac.tar.bz2 |
allow for binary keys that can be removed
Diffstat (limited to 'manifests/key')
-rw-r--r-- | manifests/key/plain.pp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/key/plain.pp b/manifests/key/plain.pp new file mode 100644 index 0000000..a84e6dd --- /dev/null +++ b/manifests/key/plain.pp @@ -0,0 +1,13 @@ +define apt::key::plain ($source) { + file { + "${apt::apt_base_dir}/${name}": + source => $source; + "${apt::apt_base_dir}/keys": + ensure => directory; + } + exec { "apt-key add ${apt::apt_base_dir}/${name}": + subscribe => File["${apt::apt_base_dir}/${name}"], + refreshonly => true, + notify => Exec['refresh_apt'], + } +} |