2017-11-09 10:51:07 +00:00
|
|
|
- name: Create various library directories
|
2018-02-13 00:51:02 +00:00
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0755
|
|
|
|
state: directory
|
2017-11-09 10:51:07 +00:00
|
|
|
with_items:
|
2017-11-10 21:10:23 +00:00
|
|
|
- /etc/iiab
|
2017-11-09 10:51:07 +00:00
|
|
|
- "{{ yum_packages_dir }}"
|
|
|
|
- "{{ pip_packages_dir }}"
|
|
|
|
- "{{ downloads_dir }}"
|
|
|
|
- /library/downloads/zims
|
|
|
|
- /library/downloads/rachel
|
|
|
|
- /library/working/zims
|
|
|
|
- /library/working/rachel
|
|
|
|
- "{{ iiab_zim_path }}/content"
|
|
|
|
- "{{ iiab_zim_path }}/index"
|
2017-11-13 02:16:28 +00:00
|
|
|
- "{{ doc_root }}/local_content"
|
2017-11-09 10:51:07 +00:00
|
|
|
- "{{ 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"
|
|
|
|
- /etc/sysconfig/olpc-scripts/
|
|
|
|
- /etc/sysconfig/olpc-scripts/setup.d/installed/
|
2018-10-17 17:35:30 +00:00
|
|
|
|
|
|
|
- name: Create symlink from webfonts to fonts
|
|
|
|
file:
|
|
|
|
src: "{{ doc_root }}/common/fonts"
|
|
|
|
path: "{{ doc_root }}/common/webfonts"
|
|
|
|
state: link
|