From d005edad5585490db79ce9f1b162959ce22298b7 Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 2 Feb 2019 19:26:58 -0500 Subject: [PATCH] Update main.yml --- roles/calibre/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/calibre/tasks/main.yml b/roles/calibre/tasks/main.yml index c2f2239e1..1d6737011 100644 --- a/roles/calibre/tasks/main.yml +++ b/roles/calibre/tasks/main.yml @@ -5,7 +5,7 @@ path: "/usr/bin/calibre" register: calib_executable -- name: Install latest packages calibre and calibre-bin, via OS's package installer (IF not rpi AND /usr/bin/calibre MISSING) +- name: Install OS's latest packages: calibre, calibre-bin (IF not rpi AND /usr/bin/calibre MISSING) package: name: - calibre @@ -51,14 +51,14 @@ when: (not calib_executable.stat.exists) #when: calibre_config.changed -# 2. STOP CALIBRE SERVICE IF IT EXISTS (REQUIRED FOR DB ACTIVITY...AND IF not calibre_enabled) +# 2. STOP CALIBRE SERVICE (REQUIRED FOR DB ACTIVITY...AND IF not calibre_enabled) #- name: Check if Calibre systemd service exists # stat: # path: /etc/systemd/system/calibre-serve.service # register: calibre_svc -- name: Stop Calibre service -- calibre-server by Kovid Goyal +- name: Stop service 'calibre-serve' (/usr/bin/calibre-server by Kovid Goyal) systemd: name: calibre-serve state: stopped @@ -116,7 +116,7 @@ state: absent when: (not calibre_enabled) and is_debuntu -- name: Enable & Start Calibre service -- runs calibre-server by Kovid Goyal +- name: Enable & Start service 'calibre-serve' (/usr/bin/calibre-server by Kovid Goyal) service: name: calibre-serve enabled: yes