diff options
Diffstat (limited to 'roles/webmail')
-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 |