mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
98 lines
3.7 KiB
YAML
98 lines
3.7 KiB
YAML
- name: Ensure directory {{ vector_map_path }}/maplist/assets exists
|
|
file:
|
|
path: '{{ vector_map_path }}/maplist/assets'
|
|
state: directory
|
|
owner: '{{ apache_user }}'
|
|
group: '{{ apache_user }}'
|
|
mode: '0755'
|
|
|
|
- name: Download map catalog {{ iiab_map_url }}/assets/regions.json to {{ vector_map_path }}/maplist/assets/
|
|
get_url:
|
|
url: "{{ iiab_map_url }}/assets/regions.json"
|
|
dest: '{{ vector_map_path }}/maplist/assets/'
|
|
|
|
- name: Symlink catalog {{ doc_root }}/common/assets/regions.json -> {{ vector_map_path }}/maplist/assets/regions.json
|
|
file:
|
|
src: "{{ vector_map_path }}/maplist/assets/regions.json"
|
|
dest: "{{ doc_root }}/common/assets/regions.json"
|
|
state: link
|
|
|
|
- name: Download the JavaScript bundle with OpenLayers (main.js) for test page http://box/maps/maplist
|
|
get_url:
|
|
url: "{{ iiab_map_url }}/../main.js"
|
|
dest: '{{ vector_map_path }}/maplist/'
|
|
|
|
- name: Install {{ vector_map_path }}/maplist/index.html from template, for test page http://box/maps/maplist
|
|
template:
|
|
src: "index.html"
|
|
dest: '{{ vector_map_path }}/maplist/index.html'
|
|
|
|
# Bboxes (bounding boxes) are currently square. But geofabrik has non-rectangular bboxes.
|
|
# So bring the bounding box definition from cloud (bboxes.geojson is big)
|
|
- name: Download bounding box definitions (bboxes.geojson) to {{ vector_map_path }}/maplist/assets/
|
|
get_url:
|
|
url: "{{ iiab_map_url }}/assets/bboxes.geojson"
|
|
dest: '{{ vector_map_path }}/maplist/assets/'
|
|
|
|
- name: Install python3-geojson package, that helps with geojson
|
|
package:
|
|
#name: python-geojson does not exist on Ubuntu 19.10
|
|
name: python3-geojson # 2019-10-14: should work across modern Linux OS's
|
|
state: present
|
|
|
|
- name: Install /usr/bin/iiab-update-map for updating of Map Pack catalog & descriptions
|
|
template:
|
|
src: iiab-update-map
|
|
dest: /usr/bin/iiab-update-map
|
|
mode: "0755"
|
|
|
|
# This depends on iiab-admin-console which is not yet installed
|
|
#- name: Run the script that does osm-vector-maps housekeeping
|
|
# shell: /usr/bin/iiab-update-map
|
|
|
|
- name: Copy countries.json (geojson) to {{ vector_map_path }}/maplist/assets
|
|
copy:
|
|
src: countries.json
|
|
dest: '{{ vector_map_path }}/maplist/assets'
|
|
|
|
# It is too complicated to use a single file for both iiab and admin-console
|
|
- name: Copy the duplicated JavaScript (map_functions.js) to {{ vector_map_path }}/maplist/assets
|
|
copy:
|
|
src: map_functions.js
|
|
dest: '{{ vector_map_path }}/maplist/assets'
|
|
|
|
- name: Install /etc/{{ apache_config_dir }}/osm-vector-maps.conf from template
|
|
template:
|
|
src: osm-vector-maps.conf
|
|
dest: "/etc/{{ apache_config_dir }}/osm-vector-maps.conf"
|
|
|
|
- name: Create symlink osm-vector-maps.conf from sites-enabled to sites-available (debuntu, not nec for redhat)
|
|
file:
|
|
src: /etc/apache2/sites-available/osm-vector-maps.conf
|
|
path: /etc/apache2/sites-enabled/osm-vector-maps.conf
|
|
state: link
|
|
when: osm_vector_maps_enabled and is_debuntu
|
|
|
|
- name: Remove symlink /etc/apache2/sites-enabled/osm-vector-maps.conf (debuntu)
|
|
file:
|
|
path: /etc/apache2/sites-enabled/osm-vector-maps.conf
|
|
state: absent
|
|
when: not osm_vector_maps_enabled and is_debuntu
|
|
|
|
#- name: Does the {{ vector_map_path }}/index.html redirect already exist?
|
|
# stat:
|
|
# path: "{{ vector_map_path }}/index.html"
|
|
# register: osm_redirect
|
|
|
|
#Copy the redirect to the test page -- delete this later if more than one map
|
|
- name: Install {{ vector_map_path }}/index.html redirect for http://box/maps -> http://box/osm-vector-maps/maplist/ if no redirect exists
|
|
copy:
|
|
force: no
|
|
src: test-index.redirect
|
|
dest: "{{ vector_map_path }}/index.html"
|
|
#when: not osm_redirect.stat.exists
|
|
|
|
- name: Reload Apache service ({{ apache_service }}) # e.g. apache2
|
|
systemd:
|
|
name: "{{ apache_service }}"
|
|
state: reloaded
|