mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Tighten up messaging
This commit is contained in:
parent
9e27cab6fc
commit
a276def718
1 changed files with 4 additions and 4 deletions
|
@ -6,13 +6,13 @@
|
||||||
mode=0755
|
mode=0755
|
||||||
when: ansible_distribution == "CentOS"
|
when: ansible_distribution == "CentOS"
|
||||||
|
|
||||||
- name: Install Calibre
|
- name: Install Calibre (CentOS)
|
||||||
shell: "{{ downloads_dir }}/calibre-installer.py >> /dev/null"
|
shell: "{{ downloads_dir }}/calibre-installer.py >> /dev/null"
|
||||||
args:
|
args:
|
||||||
creates: /usr/bin/calibre-uninstall
|
creates: /usr/bin/calibre-uninstall
|
||||||
when: calibre_install and ansible_distribution == 'CentOS'
|
when: calibre_install and ansible_distribution == 'CentOS'
|
||||||
|
|
||||||
- name: Install Calibre rpms
|
- name: Install Calibre (OS's other than CentOS)
|
||||||
# the fedora rpm arm version, though older, takes care of dependencies, and exists
|
# the fedora rpm arm version, though older, takes care of dependencies, and exists
|
||||||
package: name={{ item }}
|
package: name={{ item }}
|
||||||
state=present
|
state=present
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
- calibre
|
- calibre
|
||||||
when: calibre_install and ansible_distribution != 'CentOS'
|
when: calibre_install and ansible_distribution != 'CentOS'
|
||||||
|
|
||||||
- name: Create Calibre service(s) and support scripts
|
- name: Create calibre-serve.service and calibre.conf
|
||||||
template: backup=no
|
template: backup=no
|
||||||
src={{ item.src }}
|
src={{ item.src }}
|
||||||
dest={{ item.dest }}
|
dest={{ item.dest }}
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
state=stopped
|
state=stopped
|
||||||
when: not calibre_enabled
|
when: not calibre_enabled
|
||||||
|
|
||||||
- name: Add Calibre to service list
|
- name: Add 'calibre-serve' to service list
|
||||||
ini_file: dest='{{ service_filelist }}'
|
ini_file: dest='{{ service_filelist }}'
|
||||||
section=calibre
|
section=calibre
|
||||||
option='{{ item.option }}'
|
option='{{ item.option }}'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue