Merge branch 'master' into og-sshcollector-core

This commit is contained in:
Oliver Gorwits
2019-03-12 13:18:13 +00:00
5 changed files with 42 additions and 5 deletions

View File

@@ -11,7 +11,8 @@ register_worker({ phase => 'main' }, sub {
my $extra = $job->extra;
my $config = config();
p ($extra ? $config->{$extra} : $config);
my $dump = ($extra ? $config->{$extra} : $config);
p $dump;
return Status->done('Dumped config');
});