1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/osm-vector-maps/templates/iiab-update-map

16 lines
274 B
Text
Raw Normal View History

#!/bin/bash
2019-03-18 04:45:33 +00:00
CMDSRV_SCRIPTS="/opt/admin/cmdsrv/scripts"
2019-11-29 21:41:10 +00:00
if [ ! -f "$CMDSRV_SCRIPTS/iiab-update-map.py" ]; then
echo "Admin Console not installed. Exiting."
exit
fi
2019-03-18 04:45:33 +00:00
2019-11-29 21:41:10 +00:00
$CMDSRV_SCRIPTS/iiab-update-map.py
2019-03-18 04:45:33 +00:00
if [ $? -ne 0 ]; then
echo "Update Menus Failed."
exit 1
fi
exit