!7 cmodule CleanJavaXCache > DynPrintLogAndEnabled { switchable int retentionHours = 48; start { // Do it now if module was just added, otherwise wait an hour doEvery(dm_osStarting() ? 3600.0 : 0.0, 3600.0, r cleanJavaXCache); } void doIt enter { cleanJavaXCache(retentionHours); } }