-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding an option for the bacula file daemon to support custom message types #219
Adding an option for the bacula file daemon to support custom message types #219
Conversation
c67f0fc
to
8e6dd13
Compare
Hello, just wanted to ask for the status. Greetings |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like I started to do a review but left it pending. I can't push the minor style fix to your repo, can you integrate it? Other than that, LGTM!
README.md
Outdated
```puppet | ||
class { 'bacula::client': | ||
messages => { 'Standard-fd' => { | ||
daemon => 'fd', | ||
mname => 'Standard', | ||
director => "${director}-dir = all, !skipped, !restored", | ||
append => '"/var/log/bacula/bacula-fd.log" = all, !info, !skipped', | ||
}, | ||
}, | ||
} | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Follow the Puppet Style guide:
```puppet | |
class { 'bacula::client': | |
messages => { 'Standard-fd' => { | |
daemon => 'fd', | |
mname => 'Standard', | |
director => "${director}-dir = all, !skipped, !restored", | |
append => '"/var/log/bacula/bacula-fd.log" = all, !info, !skipped', | |
}, | |
}, | |
} | |
``` | |
```puppet | |
class { 'bacula::client': | |
messages => { | |
'Standard-fd' => { | |
daemon => 'fd', | |
mname => 'Standard', | |
director => "${director}-dir = all, !skipped, !restored", | |
append => '"/var/log/bacula/bacula-fd.log" = all, !info, !skipped', | |
}, | |
}, | |
} |
.github/CONTRIBUTING.md
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure we should keep this file, it is not maintainer by modulesync.
8e6dd13
to
5467ee2
Compare
@smortex |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Pull Request (PR) description
This adds a message parameter for the client to make customization of the logging configuration possible.
This Pull Request (PR) fixes the following issues
n/a