aboutsummaryrefslogtreecommitdiff
path: root/manifests/key/plain.pp
diff options
context:
space:
mode:
authorAntoine Beaupré <anarcat@koumbit.org>2015-06-11 10:21:56 -0400
committerAntoine Beaupré <anarcat@koumbit.org>2015-06-11 10:26:10 -0400
commit891aa0fbbed87e24322da7d3a80514f1bf94f0ac (patch)
tree943df3555a47e2da1e9e388a7c1abba5a042ecb6 /manifests/key/plain.pp
parent33acc00e5c6d8ab18f2992cccc8ee036b4d7771d (diff)
downloadpuppet-apt-891aa0fbbed87e24322da7d3a80514f1bf94f0ac.tar.gz
puppet-apt-891aa0fbbed87e24322da7d3a80514f1bf94f0ac.tar.bz2
allow for binary keys that can be removed
Diffstat (limited to 'manifests/key/plain.pp')
-rw-r--r--manifests/key/plain.pp13
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'],
+ }
+}