We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84f78dd commit c0491c6Copy full SHA for c0491c6
install/playbooks/roles/sogo/tasks/main.yml
@@ -3,16 +3,8 @@
3
- name: Start by installing the required packages
4
tags: apt
5
apt:
6
- name: '{{ pkgs }}'
+ name: '{{ sogo_pkgs }}'
7
state: present
8
- vars:
9
- pkgs:
10
- - postgresql
11
- - sogo-common
12
- - sogo
13
- - memcached
14
- - python-psycopg2
15
- - zip
16
17
# Web server configuration ====================================================
18
install/playbooks/roles/sogo/vars/main.yml
@@ -1,4 +1,13 @@
1
---
2
+# SOGo packages to install
+sogo_pkgs:
+ - postgresql
+ - sogo-common
+ - sogo
+ - memcached
+ - python-psycopg2
+ - zip
+
# Default nginx security headers for the simple web site.
# You can override this
0 commit comments