1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Cleaner messaging

This commit is contained in:
A Holt 2017-11-05 01:01:26 -05:00 committed by GitHub
parent 6dec11c4eb
commit 26e7c59015
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
# This is for an OS other than Fedora 18
- name: Install missing packages required for kalite startup
- name: Install missing packages required for KA Lite startup
package: name={{ item }}
state=present
with_items:
@ -10,7 +10,7 @@
get_url: url={{ kalite_requirements }} dest={{ pip_packages_dir }}/kalite.txt
when: internet_available
- name: Install ka-lite dependencies with pip
- name: Install KA Lite dependencies with pip (debuntu)
pip: requirements={{ pip_packages_dir }}/kalite.txt
virtualenv={{ kalite_venv }}
virtualenv_site_packages=no
@ -19,7 +19,7 @@
# extra_args="--disable-pip-version-check"
when: internet_available and is_debuntu
- name: Install ka-lite with pip
- name: Install KA Lite with pip (OS's other than debuntu)
pip: name=ka-lite-static
version={{ kalite_version }}
virtualenv={{ kalite_venv }}
@ -29,7 +29,7 @@
# extra_args="--disable-pip-version-check"
when: internet_available and is_debuntu
- name: Install ka-lite dependencies with pip
- name: Install KA Lite dependencies with pip (debuntu)
pip: requirements={{ pip_packages_dir }}/kalite.txt
virtualenv={{ kalite_venv }}
virtualenv_site_packages=no
@ -37,7 +37,7 @@
# extra_args="--disable-pip-version-check"
when: internet_available and not is_debuntu
- name: Install ka-lite with pip
- name: Install KA Lite with pip (OS's other than debuntu)
pip: name=ka-lite-static
version={{ kalite_version }}
virtualenv={{ kalite_venv }}
@ -46,7 +46,7 @@
# extra_args="--disable-pip-version-check"
when: internet_available and not is_debuntu
- name: Default is to have cronserve started with kalite
- name: Default is to have cronserve started with KA Lite
set_fact:
job_scheduler_stanza: ""
@ -55,7 +55,7 @@
job_scheduler_stanza: "--skip-job-scheduler "
when: not kalite_cron_enabled
- name: Create kalite service(s) and support scripts
- name: Create 'kalite-serve' service, kalite.sh and kalite.conf
template: backup=no
src={{ item.src }}
dest={{ item.dest }}