From 96f990ad18a5c00294ab3460d052c6424b5b78de Mon Sep 17 00:00:00 2001 From: Timo Makinen Date: Sun, 30 Oct 2022 23:53:56 +0000 Subject: [PATCH] Fix restart handlers from collab playbook --- playbooks/collab.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playbooks/collab.yml b/playbooks/collab.yml index 98a515c..13f53c3 100644 --- a/playbooks/collab.yml +++ b/playbooks/collab.yml @@ -38,7 +38,7 @@ mode: 0644 owner: root group: "{{ ansible_wheel }}" - notify: restart apache + notify: Restart apache - name: create htaccess for collab copy: @@ -67,16 +67,16 @@ path: /srv/wikis/collab/config/collabfarm.py regexp: '^\s+auth = .*' line: ' auth = [GivenAuth(autocreate=True)]' - notify: restart apache + notify: Restart apache - name: set collab base url lineinfile: path: /srv/wikis/collab/config/collabfarm.py regexp: '^\s+collab_baseurl = .*' line: " collab_baseurl = 'https://collab.foo.sh/collab/'" - notify: restart apache + notify: Restart apache - name: set collab default theme lineinfile: path: /srv/wikis/collab/config/collabfarm.py regexp: '^\s+theme_default = .*' line: " theme_default = 'foosh'" - notify: restart apache + notify: Restart apache