clanService/phonebox: asterisk restart core when extensions.conf changed

This commit is contained in:
2025-12-10 13:01:31 +07:00
parent 1f7ce58067
commit d093103d86

View File

@@ -338,6 +338,12 @@
asterisk -rx "pjsip reload"
;;
esac
case "$file" in
extensions.conf)
echo "restarting core"
asterisk -rx "core restart now"
;;
esac
done
'';
};