Skip to content
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

fixed a typo in the readme #16

Merged
merged 3 commits into from Jan 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 10 additions & 2 deletions README.md
Expand Up @@ -54,7 +54,7 @@ can use:

```puppet
class { '::rkhunter':
rootEmail => 'john.doe@example.local',
root_email => 'john.doe@example.local',
}
```

Expand Down Expand Up @@ -94,7 +94,15 @@ The following parameters are available in the rkhunter module

#### `root_email`

Set the root email adress that get notifications if events occur.
Set the root email address that get notifications if events occur.

#### `warning_email`

Set the email address that gets notifications if warnings occur.

#### `enable_warning_email`

Set to true to send emails on warnings (default: false).

#### `remote_syslog`
Set to true if remote syslog is used
Expand Down
8 changes: 7 additions & 1 deletion manifests/init.pp
Expand Up @@ -10,7 +10,13 @@
# icman = boolean, should icman network check be enabled or disabled
#
# [*root_email*]
# Set the root email adress that get notifications if events occur
# Set the root email address that get notifications if events occur
#
# [*warning_email*]
# Set the email address that gets notifications if warnings occur
#
# [*enable_warning_email*]
# Set to true to send emails on warnings (default: false)
#
# [*remote_syslog*]
# Set to true when remote syslog is enabled
Expand Down