diff --git a/fhem/FHEM/98_configdb.pm b/fhem/FHEM/98_configdb.pm index 67527cf26..df7780467 100644 --- a/fhem/FHEM/98_configdb.pm +++ b/fhem/FHEM/98_configdb.pm @@ -313,7 +313,7 @@ sub _cfgDB_readConfig() { Starting with version 5079, fhem can be used with a configuration database instead of a plain text file (e.g. fhem.cfg).
This offers the possibility to completely waive all cfg-files, "include"-problems and so on.
Furthermore, configDB offers a versioning of several configuration together with the possibility to restore a former configuration.
- Detailled informations about the available recovery and rescue modes can be found in this forum thread:
+ Detailed information about the available recovery and rescue modes can be found in this forum thread:
https://forum.fhem.de/index.php/topic,86225.0.html
Access to database is provided via perl's database interface DBI.

@@ -323,6 +323,8 @@ sub _cfgDB_readConfig() { Currently the fhem modules

  • 02_RSS.pm
  • +
  • 10_RHASSPY.pm
  • +
  • 31_Lightscene.pm
  • 55_InfoPanel.pm
  • 91_eventTypes
  • 93_DbLog.pm
  • diff --git a/fhem/configDB.pm b/fhem/configDB.pm index c82ac7bdd..23555ec2e 100644 --- a/fhem/configDB.pm +++ b/fhem/configDB.pm @@ -664,6 +664,22 @@ sub cfgDB_MigrationImport { push @files, $fn; } +# find LightScene configurations + @def = ''; + @def = _cfgDB_findDef('TYPE=LightScene','CONFIGFILE'); + foreach my $fn (@def) { + next unless $fn; + push @files, $fn; + } + +# find RHASSPY configurations + @def = ''; + @def = _cfgDB_findDef('TYPE=RHASSPY','CONFIGFILE'); + foreach my $fn (@def) { + next unless $fn; + push @files, $fn; + } + # find holiday files @def = ''; @def = _cfgDB_findDef('TYPE=holiday','NAME');