Browse Source

Install lua-sec-prosody package on Debian Wheezy and Ubuntu Precise

This is the updated version from the prosody repository because
these distributions have an old version of the lua-sec package
that lacks PFS and other features. Second commit for issue #285.
Sven Neuhaus 10 years ago
parent
commit
edf65c530a
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      roles/xmpp/tasks/prosody.yml

+ 4
- 0
roles/xmpp/tasks/prosody.yml View File

8
 - name: Install Prosody from official repository
8
 - name: Install Prosody from official repository
9
   apt: pkg=prosody update_cache=yes
9
   apt: pkg=prosody update_cache=yes
10
 
10
 
11
+- name: Install lua-sec-prosody on Debian Wheezy and Ubuntu Precise
12
+  apt: pkg=lua-sec-prosody update_cache=yes
13
+  when: ansible_distribution_release == 'wheezy' or ansible_distribution_release == 'precise'
14
+
11
 - name: Install lua-sec 0.5+
15
 - name: Install lua-sec 0.5+
12
   apt: pkg=lua-sec update_cache=yes
16
   apt: pkg=lua-sec update_cache=yes
13
   when: ansible_distribution_release == 'trusty' or ansible_distribution_release == 'jessie'
17
   when: ansible_distribution_release == 'trusty' or ansible_distribution_release == 'jessie'

Loading…
Cancel
Save