From 239c05e01c95a97e2feb4a9a5c4efdc10a226c6b Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Thu, 30 Jul 2020 19:50:17 +0200 Subject: [PATCH] Add some cool deps to roundcube --- roles/roundcube/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/roundcube/tasks/main.yml b/roles/roundcube/tasks/main.yml index bb42febf..ca9dbb81 100644 --- a/roles/roundcube/tasks/main.yml +++ b/roles/roundcube/tasks/main.yml @@ -2,9 +2,16 @@ - name: Install Roundcube apt: update_cache: true + install_recommends: false name: - nginx - roundcube + - roundcube-plugins + - php-fpm + - php-gd + - php-pspell + - php-crypt-gpg + - php-net-ldap3 register: apt_result retries: 3 until: apt_result is succeeded