From ee58a845886ee9e9205d2ec9e366a8c65ad0c60f Mon Sep 17 00:00:00 2001 From: Victor LABORIE Date: Wed, 25 Oct 2017 10:17:13 +0200 Subject: [PATCH] roundcube: fix regex for enabling plugins --- webapps/roundcube/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapps/roundcube/tasks/main.yml b/webapps/roundcube/tasks/main.yml index 4b793967..aa92d1f5 100644 --- a/webapps/roundcube/tasks/main.yml +++ b/webapps/roundcube/tasks/main.yml @@ -39,7 +39,7 @@ - name: enable default plugins replace: dest: /etc/roundcube/config.inc.php - regexp: "^\\$config\\['plugins'\\] array($" + regexp: "^\\$config\\['plugins'\\] = array\\($" replace: "$config['plugins'] = array('zipdownload','managesieve'" tags: - roundcube