From cbb62236c8d71f906cb1bbaa46cda24e84b2e28f Mon Sep 17 00:00:00 2001 From: A Holt Date: Sun, 26 Nov 2017 20:12:09 -0500 Subject: [PATCH] Update main.yml --- roles/nextcloud/tasks/main.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/roles/nextcloud/tasks/main.yml b/roles/nextcloud/tasks/main.yml index 2899e1a0c..24dc3c05a 100644 --- a/roles/nextcloud/tasks/main.yml +++ b/roles/nextcloud/tasks/main.yml @@ -123,18 +123,19 @@ - include_tasks: nextcloud_enabled.yml - name: Add 'nextcloud' to list of services at /etc/iiab/iiab.ini - ini_file: dest='{{ service_filelist }}' - section=nextcloud - option='{{ item.option }}' - value='{{ item.value }}' + ini_file: + dest: "{{ service_filelist }}" + section: Nextcloud + option: "{{ item.option }}" + value: "{{ item.value }}" with_items: - - option: name - value: nextcloud - - option: description - value: '"NextCloud is a local server-based facility for sharing files, photos, contacts, calendars, etc."' - - option: path - value: "{{ nextcloud_prefix }}/nextcloud" - - option: source - value: "{{ nextcloud_src_file }}" - - option: enabled - value: "{{ nextcloud_enabled }}" + - option: name + value: Nextcloud + - option: description + value: '"NextCloud is a local server-based facility for sharing files, photos, contacts, calendars, etc."' + - option: path + value: "{{ nextcloud_prefix }}/nextcloud" + - option: source + value: "{{ nextcloud_src_file }}" + - option: enabled + value: "{{ nextcloud_enabled }}"