mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
16 lines
538 B
YAML
16 lines
538 B
YAML
# For OS's other than Fedora 18
|
|
|
|
- name: Create {{ kalite_root }} directory
|
|
file:
|
|
path: "{{ kalite_root }}/httpsrv/static" # /library/ka-lite
|
|
owner: root
|
|
group: root
|
|
mode: 0755
|
|
state: directory
|
|
|
|
- name: Run the setup using 'kalite manage'
|
|
command: "{{ kalite_program }} manage setup --username={{ kalite_admin_user }} --password={{ kalite_admin_password }} --noinput" # Runs /usr/local/kalite/venv/bin/kalite
|
|
environment:
|
|
KALITE_HOME: "{{ kalite_root }}" # /library/ka-lite
|
|
async: 1800
|
|
poll: 10
|