summaryrefslogtreecommitdiff
path: root/puppet/modules/soledad/manifests/common.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-08-27 15:07:02 -0400
committerMicah Anderson <micah@leap.se>2013-08-27 17:49:20 -0400
commit92ad38f756f277866e6a3953dbc3e7f31b99898f (patch)
tree7805e82999f034fd23e0038a6ff47da26bbb68bb /puppet/modules/soledad/manifests/common.pp
parent14cee35e55c999663dbd8ac34197b6ce7382e35d (diff)
now that soledad has been split we can better organize things (#3579)
. create a soledad::common class . leap-mx now only needs to include soledad-common . move the site_apt::preferences::twisted to a preferences block inside the soledad server class . make sure that the packages are doing 'ensure => latest' instead of installed Change-Id: Ifa978e831cdc8835666b27322a6e068d67251f5d
Diffstat (limited to 'puppet/modules/soledad/manifests/common.pp')
-rw-r--r--puppet/modules/soledad/manifests/common.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/puppet/modules/soledad/manifests/common.pp b/puppet/modules/soledad/manifests/common.pp
new file mode 100644
index 00000000..8a1d664a
--- /dev/null
+++ b/puppet/modules/soledad/manifests/common.pp
@@ -0,0 +1,10 @@
+class soledad::common {
+
+ include soledad
+
+ package { 'soledad-common':
+ ensure => latest,
+ require => User['soledad']
+ }
+
+}