I've got a FOG server up and running and am extremely pleased with everything except for the sleep timer for the SnapIn Client. Is there any way to speed this up? The log in my freshly imaged machines show sleep times of upwards of 500 seconds (8 minutes, really?). I want to set this to something a little more reasonable, say, 10-20 seconds.
I've tried to modify the script in "fog_0.32/FOG Service/src/FOG_SnapinClient/MOD_SnapinClient.cs" to decrease the sleep time displayed from (350, 500) to (10, 20).
Saved the file, restarted the FOG server.
I've also modified the solution with visual studio to recompile the snapin .dlls - still no luck.
try
{
Random r = new Random();
int intSleep = r.Next(350, 500);
log(MOD_NAME, "Sleeping for " + intSleep + " seconds.");
System.Threading.Thread.Sleep(intSleep * 1000);
}
catch{}
Has anyone had any experience modifying the installation to tweak certain system variables such as this?