1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/roles/osm-vector-maps/templates/iiab-update-map
2019-11-29 10:40:50 -05:00

15 lines
278 B
Bash
Executable file

#!/bin/bash
CMDSRV_SCRIPTS="/opt/admin/cmdsrv/scripts"
if [ ! -f "$CMDSRV_SCRIPTS/iiab_update_menus.py" ]; then
echo "Admin Console not installed. Exiting."
exit
fi
$CMDSRV_SCRIPTS/iiab_update_menus.py
if [ $? -ne 0 ]; then
echo "Update Menus Failed."
exit 1
fi
exit