diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-12-08 19:44:27 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-12-08 19:44:27 +0100 |
commit | 543af91269d49aa27c24cd9d5d6bfa39613b5f27 (patch) | |
tree | 51d6437a919a0d8eb6f24f41b427585247fccb2d /roles | |
parent | 7ac4fc84987535a5b592bbfc7ecb3e3794afac93 (diff) |
Webmail: Install XCache (PHP opcode cacher).
Diffstat (limited to 'roles')
-rw-r--r-- | roles/webmail/tasks/roundcube.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/roles/webmail/tasks/roundcube.yml b/roles/webmail/tasks/roundcube.yml index 15544c2..b5e81d6 100644 --- a/roles/webmail/tasks/roundcube.yml +++ b/roles/webmail/tasks/roundcube.yml @@ -1,26 +1,27 @@ - name: Install PHP apt: pkg={{ item }} with_items: - php5-fpm - php5-ldap - php5-gd + - php5-xcache # spell-checking - php5-enchant - name: Install GNU Aspell and some dictionaries apt: pkg={{ item }} with_items: - aspell - aspell-da - aspell-de - aspell-en - aspell-es - aspell-fr - aspell-no - aspell-sv - name: Install Roundcube apt: pkg={{ item }} default_release={{ ansible_lsb.codename }}-backports with_items: - roundcube-core - roundcube-mysql |