From da82fa06590d1644bbc66db36dddf2e1bf5f6083 Mon Sep 17 00:00:00 2001 From: A Holt Date: Tue, 17 Oct 2017 21:17:45 -0400 Subject: [PATCH] kiwix_serve_enabled -> kiwix_enabled --- roles/kiwix/tasks/kiwix_install.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/kiwix/tasks/kiwix_install.yml b/roles/kiwix/tasks/kiwix_install.yml index b0d5ec5dc..4b6d03cf1 100644 --- a/roles/kiwix/tasks/kiwix_install.yml +++ b/roles/kiwix/tasks/kiwix_install.yml @@ -128,16 +128,16 @@ - option: kiwix_content_path value: "{{ kiwix_content_path }}" - option: enabled - value: "{{ kiwix_serve_enabled }}" + value: "{{ kiwix_enabled }}" - name: Enable kiwix-serve service service: name=kiwix-serve enabled=yes state=restarted - when: kiwix_serve_enabled + when: kiwix_enabled - name: Disable kiwix-serve service service: name=kiwix-serve enabled=no state=stopped - when: not kiwix_serve_enabled + when: not kiwix_enabled