-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from Phil-Friderici/EL8
Add support for Suse 15 an EL 8
- Loading branch information
Showing
8 changed files
with
184 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This file is being maintained by Puppet. | ||
# DO NOT EDIT | ||
|
||
/var/log/messages | ||
/var/log/secure | ||
/var/log/maillog | ||
/var/log/spooler | ||
/var/log/boot.log | ||
/var/log/cron | ||
{ | ||
sharedscripts | ||
postrotate | ||
/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true | ||
endscript | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This file is being maintained by Puppet. | ||
# DO NOT EDIT | ||
|
||
/var/log/messages | ||
/var/log/secure | ||
/var/log/maillog | ||
/var/log/spooler | ||
/var/log/boot.log | ||
/var/log/cron | ||
/var/log/warn | ||
/var/log/allmessages | ||
/var/log/localmessages | ||
/var/log/firewall | ||
/var/log/acpid | ||
/var/log/NetworkManager | ||
/var/log/mail | ||
/var/log/mail.info | ||
/var/log/mail.warn | ||
/var/log/mail.err | ||
/var/log/news/news.crit | ||
/var/log/news/news.err | ||
/var/log/news/news.notice | ||
{ | ||
compress | ||
dateext | ||
maxage 365 | ||
rotate 99 | ||
missingok | ||
notifempty | ||
size +4096k | ||
create 640 root root | ||
sharedscripts | ||
postrotate | ||
/sbin/service syslog reload > /dev/null | ||
endscript | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file is being maintained by Puppet. | ||
# DO NOT EDIT | ||
# | ||
# Options for rsyslogd | ||
# Syslogd options are deprecated since rsyslog v3. | ||
# If you want to use them, switch to compatibility mode 2 by "-c 2" | ||
# See rsyslogd(8) for more details | ||
SYSLOGD_OPTIONS="<%= @syslogd_options_real %>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# This file is being maintained by Puppet. | ||
# DO NOT EDIT | ||
|
||
## Type: string | ||
## Default: "" | ||
## Config: "" | ||
## ServiceRestart: syslog | ||
# | ||
# Parameters for rsyslogd, except of the version compatibility (-c) | ||
# and the config file (-f), because they're used by sysconfig and | ||
# earlysysconfig init scripts. | ||
# | ||
# See also the RSYSLOGD_COMPAT_VERSION variable in this file, the | ||
# documentation provided in /usr/share/doc/packages/rsyslog/doc by | ||
# the rsyslog-doc package and the rsyslogd(8) and rsyslog.conf(5) | ||
# manual pages. | ||
# | ||
RSYSLOGD_PARAMS="<%= @syslogd_options_real %>" |