From 594f9be9228ddc08fa426315554dfcb946667af6 Mon Sep 17 00:00:00 2001 From: s3lph Date: Tue, 7 Feb 2023 22:03:28 +0100 Subject: [PATCH] fix(config): remove die removal --- roles/nextcloud/tasks/install.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/roles/nextcloud/tasks/install.yml b/roles/nextcloud/tasks/install.yml index 2b914ac..286f0af 100644 --- a/roles/nextcloud/tasks/install.yml +++ b/roles/nextcloud/tasks/install.yml @@ -18,15 +18,6 @@ ansible.builtin.apt: name: "nextcloud-{{ nextcloud_major_version }}" -- name: Remove die line from config.php - ansible.builtin.lineinfile: - path: /var/lib/nextcloud/webroot/config/config.php - regexp: "^die\s+'[^']*';" - state: absent - owner: www-data - group: www-data - mode: 0644 - - name: Gather Nextcloud facts become: true become_user: www-data