For me better would be to prepare some server with simple API and all LMs should fetching current settings from it.
This central server could be set up also on some LM.
In very simple way you could use for this task exported group addresses or .lp files with very simple script.
For second way you could have your settings in storage.
This central server could be set up also on some LM.
In very simple way you could use for this task exported group addresses or .lp files with very simple script.
For second way you could have your settings in storage.
Code:
<?
require('apps')
require('json')
_SCRIPTNAME = 'Central schedule'
_CONFIGKEY = 'centralSchedule';
local config = storage.get(_CONFIGKEY, {})
print(json.encode(config))
?>
Done is better than perfect