The MC autolocker and FSSslow scripts weren't running on Megtron. These were started by running the following commands on megatron:
sudo initctl start MCautolocker
sudo initctl start FSSslow
The new autoburt cronjob was failing because the .cron file was not executable (fixed by chmod +x burtnew.cron ), and the new perl script didn't use the full path for ifconfig . Similarly, the simulink webview updating script was failing because the full path for matlab wasn't being given. Both of these fixes have been tested and commited to SVN.
In general, cron scripts can be a real pain, since the cron process doesn't run our .bashrc , and so doesn't know about updates to $PATH , or other environment vairables that get updated through /ligo/cdscfg/workstationrc.sh , which is called by .bashrc . So something that manually works fine in the terminal may not play out as expected when run by cron. |