diff options
Diffstat (limited to 'roles/webmail/tasks')
-rw-r--r-- | roles/webmail/tasks/roundcube.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/webmail/tasks/roundcube.yml b/roles/webmail/tasks/roundcube.yml index 2296cc2..c186354 100644 --- a/roles/webmail/tasks/roundcube.yml +++ b/roles/webmail/tasks/roundcube.yml @@ -58,41 +58,41 @@ - name: Create cache directory /var/log/roundcube file: path=/var/log/roundcube state=directory owner=_roundcube group=adm mode=0750 - name: Install GNU Aspell and some dictionaries apt: pkg={{ packages }} vars: packages: - aspell - aspell-da - aspell-de - aspell-en - aspell-es - aspell-fr - aspell-no - aspell-sv - name: Install Roundcube - apt: pkg={{ packages }} default_release={{ ansible_lsb.codename }}-backports + apt: pkg={{ packages }} vars: packages: - roundcube-core - roundcube-mysql - roundcube-plugins - roundcube-plugins-extra - name: Install plugin dependencies apt: pkg={{ packages }} vars: packages: - php-net-sieve - name: Copy fripost's logo copy: src=usr/share/roundcube/program/resources/{{ item }} dest=/usr/share/roundcube/program/resources/{{ item }} owner=root group=root mode=0644 with_items: - fripost_logo_black.png |