#!/bin/bash
SYNOINFODEF='/etc/synoinfo.conf'
LOCATION_KEY='ip_country'
SYNORELAYD_BIN='/var/packages/QuickConnect/target/usr/syno/sbin/synorelayd'
region=$(${SYNORELAYD_BIN} -l)
if [ ! -z ${region} ]; then
synosetkeyvalue ${SYNOINFODEF} ${LOCATION_KEY} ${region}
else
synosetkeyvalue ${SYNOINFODEF} ${LOCATION_KEY} ""
fi