diff --git a/roles/osm/tasks/main.yml b/roles/osm/tasks/main.yml index 5fb5d28d3..bfff07863 100644 --- a/roles/osm/tasks/main.yml +++ b/roles/osm/tasks/main.yml @@ -138,16 +138,18 @@ state=restarted - name: Add 'osm' to list of services at /etc/iiab/iiab.ini - ini_file: dest='{{ service_filelist }}' - section=osm - option='{{ item.option }}' - value='{{ item.value }}' + ini_file: + dest: "{{ service_filelist }}" + section: osm + option: "{{ item.option }}" + value: "{{ item.value }}" with_items: - - option: name - value: Internet-in-a-Box - - option: description - value: '"The Internet-in-a-Box is a small, inexpensive device which provides essential Internet resources without any Internet connection. It provides a local copy of half a terabyte of the world’s Free information."' - - option: path - value: /osm - - option: enabled - value: "{{ osm_enabled }}" + - option: name + value: OpenStreetMap + - option: description + value: '"OpenStreetMap offers beautiful maps of the entire planet, continually created & updated by volunteers (much in the same way as Wikipedia) but for maps."' + # value: '"The Internet-in-a-Box is a small, inexpensive device which provides essential Internet resources without any Internet connection. It provides a local copy of half a terabyte of the world’s Free information."' + - option: path + value: /osm + - option: enabled + value: "{{ osm_enabled }}"