summaryrefslogtreecommitdiff
path: root/puppet/modules/soledad/manifests/client.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-10-30 10:31:17 +0100
committervarac <varacanero@zeromail.org>2015-10-30 10:31:17 +0100
commit72bec64f52895153612b5e736274266ebc0ab554 (patch)
tree285f627ae16cceda938e0b5ed41139c5a750be35 /puppet/modules/soledad/manifests/client.pp
parent171a5a9a3794224a92244078574aac4b22845266 (diff)
[feat] Add soledad::client class for soledad-sync
- Restructure soledad class - Include soledad::client class on webapp nodes - Tested: [unstable.bitmask.net] - Related: #7523
Diffstat (limited to 'puppet/modules/soledad/manifests/client.pp')
-rw-r--r--puppet/modules/soledad/manifests/client.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/puppet/modules/soledad/manifests/client.pp b/puppet/modules/soledad/manifests/client.pp
new file mode 100644
index 00000000..5700cb09
--- /dev/null
+++ b/puppet/modules/soledad/manifests/client.pp
@@ -0,0 +1,18 @@
+# setup soledad-client
+# currently needed on webapp node to run the soledad-sync test
+class soledad::client {
+
+ tag 'leap_service'
+ include soledad::common
+
+ package {
+ 'soledad-client':
+ ensure => latest,
+ require => [
+ Class['site_apt::preferences::twisted'],
+ Class['site_apt::leap_repo'] ];
+ 'python-u1db':
+ ensure => latest;
+ }
+
+}