mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
15 lines
278 B
Bash
Executable file
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
|