Merge branch 'dev'

This commit is contained in:
2023-04-27 21:39:33 -05:00
2 changed files with 7 additions and 19 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
VERS='3.8.140-04232023'
VERS='3.8.142-04232023'
MMFOLDER="/opt/idssys/mediamanager"
MMSRV=$(/sbin/ip -o -4 addr list eth0 | awk '{print $4}' | cut -d/ -f1)

View File

@@ -1387,34 +1387,22 @@ if [ ! -f ${MMFOLDER}/mm.update.stop ]; then
fi
MMSTATUS ${2}
;;
setup)
MMSETUP
;;
vpninfo)
GETVPNINFO
;;
speedtest)
VPNSPEEDTEST
;;
setup) MMSETUP;;
vpninfo) GETVPNINFO;;
speedtest) VPNSPEEDTEST;;
update);;
update-service)
UPDATESERVICE ${2}
;;
update-service) UPDATESERVICE ${2};;
update-allservices)
# for usrvc in "${SERVICES_CHECK[@]}"; do
for usrvc in "${UPDATE_SERVICES[@]}"; do
[ "${MM_UPDATE_REPO[${usrvc}]}" != "" ] && UPDATESERVICE ${usrvc}
done
;;
update-list) SHOWSRVCUPDATES;;
update-organizr) UPDATEORGANIZR;;
clear) echo -e "${idsCL[LightCyan]}Clearing all mm.* files ${idsCL[Default]}"
echo
;;
clear) echo -e "${idsCL[LightCyan]}Clearing all mm.* files ${idsCL[Default]}"; echo;;
*) USAGE;;
esac
else