Results 55 comments of Pavel Selivanov

@norpol It does start successfuly, which means the config is correct, but it fails config check. That does not play right with automation systems, like ansible/puppet/etc.

@rgerhards I think this would be the best solution: `-N 1` makes a soft check, returning 0 if rsyslog can start with this config, and `-N 2` makes a hard...

@rgerhards yes, `ignoreIfLoaded="yes"` should do the trick, good idea. It may allow loading without other parameters or with exactly same parameters as before, attempt to load the same module with...

@davidelang > what do you do if the different module loads don't have the same parameters? throw an error, config is incorrect

@rgerhards it is also possible to have a check if module is loaded: ``` if not module_is_loaded(name='imfile') { module(load="imfile") } ``` This will solve the problem and does not require...