Merge branch 'allow-empty-configs'
This commit is contained in:
commit
bc4cbd7964
@ -176,6 +176,12 @@ Module::loadConfigurationFile( const QString& configFileName ) //throws YAML::Ex
|
||||
QByteArray ba = configFile.readAll();
|
||||
|
||||
YAML::Node doc = YAML::Load( ba.constData() );
|
||||
if ( doc.IsNull() )
|
||||
{
|
||||
// Special case: empty config files are valid,
|
||||
// but aren't a map.
|
||||
return;
|
||||
}
|
||||
if ( !doc.IsMap() )
|
||||
{
|
||||
cLog() << Q_FUNC_INFO << "bad module configuration format"
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
#scrLog: "/path/to/installation.log"
|
||||
#srcLog: "/path/to/installation.log"
|
||||
#destLog: "/var/log/installation.log"
|
||||
# example when using the Calamares created log:
|
||||
#srcLog: "/root/.cache/Calamares/Calamares/Calamares.log"
|
||||
|
Loading…
Reference in New Issue
Block a user