瀏覽代碼

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 9 年之前
父節點
當前提交
edf65c530a
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      roles/xmpp/tasks/prosody.yml

+ 4
- 0
roles/xmpp/tasks/prosody.yml 查看文件

@@ -8,6 +8,10 @@
8 8
 - name: Install Prosody from official repository
9 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 15
 - name: Install lua-sec 0.5+
12 16
   apt: pkg=lua-sec update_cache=yes
13 17
   when: ansible_distribution_release == 'trusty' or ansible_distribution_release == 'jessie'

Loading…
取消
儲存