2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-03 22:38:45 +00:00

fhem.pl: add disableFeatures:securityCheck + doc (Forum #110097)

git-svn-id: https://svn.fhem.de/fhem/trunk@21762 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2020-04-23 10:08:41 +00:00
parent fa2221a262
commit 2172d7d3cf
3 changed files with 28 additions and 1 deletions

View File

@ -1528,6 +1528,20 @@ The following local attributes are used by a wider range of devices:
dynamically.
</li><br>
<a name="globaldisableFeatures"></a>
<li>disableFeatures <values><br>
comma separated list of values. Currently following values are
recognized:
<ul>
<li>attrTemplate: to avoid loading the AttrTemplates (which currently
consumes about 1MB of memory and needs some seconds to load on a
slow hardware)</li>
<li>securityCheck: to avoid checking if each Server port is secured
by password. May make sense to avoid warnings, if you know it
better.</li> </li><br>
</ul>
</li>
<a name="dnsHostsFile"></a>
<li>dnsHostsFile<br>
If dnsServer is set, check the contents of the file specified as

View File

@ -1636,6 +1636,18 @@ Die folgenden lokalen Attribute werden von mehreren Ger&auml;ten verwendet:
IPv4 unterst&uuml;tzt.
</li><br>
<a name="globaldisableFeatures"></a>
<li>disableFeatures <values><br>
Komma separierte Liste von Werten. Z.Zt. werden Folgende erkannt:
<ul>
<li>attrTemplate: um das Laden der AttrTemplates zu vermeiden.
</li>
<li>securityCheck: um bei fehlenden Benutzer/Passwort bei den
aktivierten Netzwerk-Server keine Warnmeldung zu generieren.
</li><br>
</ul>
</li>
<a name="dnsServer"></a>
<li>dnsServer<br>
Enth&auml;lt die IP Adresse des DNS Servers. Die von bestimmten Modulen

View File

@ -331,7 +331,7 @@ my @globalAttrList = qw(
blockingCallMax
commandref:modular,full
configfile
disableFeatures:multiple,attrTemplate
disableFeatures:multiple-strict,attrTemplate,securityCheck
dnsHostsFile
dnsServer
dupTimeout
@ -5983,6 +5983,7 @@ sub
SecurityCheck()
{
my @fnd;
return if(AttrVal("global", "disableFeatures", "") =~ m/\bsecurityCheck\b/i);
foreach my $sdev (keys %defs) {
next if($defs{$sdev}{TEMPORARY});
my $type = $defs{$sdev}{TYPE};