mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
# fl.yml signifies "file layout"
|
|
|
|
- name: Create directories with ownership root:root and permissions 0755 (1 in /etc, 1 in {{ py3_dist_path }}, 3 in {{ iiab_base }} and 15 in /library) # py3_dist_path is /usr/lib/python3/dist-packages, iiab_base is /opt/iiab
|
|
file:
|
|
path: "{{ item }}"
|
|
owner: root
|
|
group: root
|
|
mode: 0755
|
|
state: directory
|
|
with_items:
|
|
- /etc/sysconfig/olpc-scripts/setup.d/installed/
|
|
- "{{ yum_packages_dir }}"
|
|
- "{{ pip_packages_dir }}"
|
|
- "{{ downloads_dir }}"
|
|
- /library/downloads/zims
|
|
- /library/downloads/rachel
|
|
- /library/downloads/maps
|
|
- /library/working/zims
|
|
- /library/working/rachel
|
|
- /library/working/maps
|
|
- "{{ iiab_zim_path }}/content"
|
|
- "{{ iiab_zim_path }}/index"
|
|
- "{{ doc_root }}/local_content"
|
|
- "{{ doc_root }}/modules"
|
|
- "{{ doc_root }}/common/css"
|
|
- "{{ doc_root }}/common/js"
|
|
- "{{ doc_root }}/common/fonts"
|
|
- "{{ doc_root }}/common/html"
|
|
- "{{ doc_root }}/common/images"
|
|
- "{{ doc_root }}/common/assets"
|
|
- "{{ doc_root }}/common/services"
|
|
- "{{ py3_dist_path }}/iiab"
|
|
|
|
- name: Symlink from {{ doc_root }}/common/webfonts to {{ doc_root }}/common/fonts
|
|
file:
|
|
src: "{{ doc_root }}/common/fonts"
|
|
path: "{{ doc_root }}/common/webfonts"
|
|
state: link
|
|
|
|
- name: Create log files which apache and nginx can write
|
|
file:
|
|
path: "{{ item }}"
|
|
owner: www-data
|
|
group: www-data
|
|
mode: 0660
|
|
state: directory
|
|
with_items:
|
|
- /var/log/apache2
|
|
- "{{ nginx_log_dir }}"
|
|
|