summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2014-06-27 20:36:54 -0400
committerMicah Anderson <micah@leap.se>2014-06-27 20:36:54 -0400
commitbe68734a93a2780578c2a54b6c90296c9fe88cbe (patch)
tree9de96902381008b9c907d2e9b9e5afc705ae9fb1
parent8ff905489915324427884d1e8dc850d117c7859c (diff)
add a package resource for leap-keymanager to make sure it is also the
latest version, this is necessary to transition to the python-gnupg-ng package, which will not otherwise be installed Change-Id: I2ea631e15518fd40cb0ea4fe718498bdfba3c599
-rw-r--r--puppet/modules/leap_mx/manifests/init.pp12
1 files changed, 8 insertions, 4 deletions
diff --git a/puppet/modules/leap_mx/manifests/init.pp b/puppet/modules/leap_mx/manifests/init.pp
index 6a010998..c90fc231 100644
--- a/puppet/modules/leap_mx/manifests/init.pp
+++ b/puppet/modules/leap_mx/manifests/init.pp
@@ -40,12 +40,16 @@ class leap_mx {
}
#
- # LEAP-MX CODE
+ # LEAP-MX CODE AND DEPENDENCIES
#
- package { 'leap-mx':
- ensure => latest,
- require => Class['site_apt::preferences::twisted']
+ package {
+ 'leap-mx':
+ ensure => latest,
+ require => Class['site_apt::preferences::twisted'];
+
+ [ 'leap-keymanager' ]:
+ ensure => latest;
}
#