} else {
free(epggrab_conf.cron);
epggrab_conf.cron = strdup("# Default config (00:04 and 12:04 everyday)\n4 */12 * * *");
- LIST_FOREACH(mod, &epggrab_modules, link) // enable all OTA by default
- if (mod->type == EPGGRAB_OTA) {
+ LIST_FOREACH(mod, &epggrab_modules, link) // enable only OTA EIT and OTA PSIP by default
+ if (mod->type == EPGGRAB_OTA &&
+ (mod->subsys == LS_TBL_EIT || mod->subsys == LS_PSIP)) {
mod->enabled = 1;
epggrab_activate_module(mod, 1);
}