mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
kalite/tasks/setup.yml cleaner/readability
This commit is contained in:
parent
6da31ac311
commit
f031ef6cfb
1 changed files with 5 additions and 5 deletions
|
@ -1,16 +1,16 @@
|
||||||
# This is for an OS other than Fedora 18
|
# For OS's other than Fedora 18
|
||||||
|
|
||||||
- name: Create kalite_root directory
|
- name: Create {{ kalite_root }} directory
|
||||||
file:
|
file:
|
||||||
path: "{{ kalite_root }}/httpsrv/static"
|
path: "{{ kalite_root }}/httpsrv/static" # /library/ka-lite
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0755
|
mode: 0755
|
||||||
state: directory
|
state: directory
|
||||||
|
|
||||||
- name: Run the setup using 'kalite manage'
|
- name: Run the setup using 'kalite manage'
|
||||||
command: "{{ kalite_program }} manage setup --username={{ kalite_admin_user }} --password={{ kalite_admin_password }} --noinput"
|
command: "{{ kalite_program }} manage setup --username={{ kalite_admin_user }} --password={{ kalite_admin_password }} --noinput" # Runs /usr/local/kalite/venv/bin/kalite
|
||||||
environment:
|
environment:
|
||||||
KALITE_HOME: "{{ kalite_root }}"
|
KALITE_HOME: "{{ kalite_root }}" # /library/ka-lite
|
||||||
async: 1800
|
async: 1800
|
||||||
poll: 10
|
poll: 10
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue