-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
integrated AIX packaging fixes from dev-folti
Patches applied: * [email protected]/syslog-ng--dev-folti--2.0--patch-2 Fixed: AIX5.2 packaging support. (fixes: #10375) * [email protected]/syslog-ng--dev-folti--2.0--patch-3 Fixes: added libevtlog-dev build dependency. (fixes: #10375) * [email protected]/syslog-ng--dev-folti--2.0--patch-5 Fixed: RPM packaging for 2.0. (fixes: #nobug) * [email protected]/syslog-ng--dev-folti--2.0--patch-7 Refresh: Fixed: AIX5.2 packaging support. (fixes: #10375) * [email protected]/syslog-ng--dev-folti--2.0--patch-8 Refresh: Fixes: added libevtlog-dev build dependency. (fixes: #10375) * [email protected]/syslog-ng--dev-folti--2.0--patch-9 Refresh: Fixed: RPM packaging for 2.0. (fixes: #nobug) * [email protected]/syslog-ng--dev-folti--2.0--patch-10 Fixed: removed duplicated install commanands from spec file. (fixes #nobug)
- Loading branch information
Balazs Scheidler
committed
Apr 14, 2007
1 parent
ae13d6c
commit d2d3e56
Showing
4 changed files
with
319 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,60 @@ | |
# arch-tag: [email protected]/syslog-ng--mainline--2.0 | ||
# | ||
|
||
2007-01-29 08:49:55 GMT Balazs Scheidler <[email protected]> patch-124 | ||
|
||
Summary: | ||
integrated AIX packaging fixes from dev-folti | ||
Revision: | ||
syslog-ng--mainline--2.0--patch-124 | ||
|
||
|
||
|
||
Patches applied: | ||
|
||
* [email protected]/syslog-ng--dev-folti--2.0--patch-2 | ||
Fixed: AIX5.2 packaging support. (fixes: #10375) | ||
|
||
* [email protected]/syslog-ng--dev-folti--2.0--patch-3 | ||
Fixes: added libevtlog-dev build dependency. (fixes: #10375) | ||
|
||
* [email protected]/syslog-ng--dev-folti--2.0--patch-5 | ||
Fixed: RPM packaging for 2.0. (fixes: #nobug) | ||
|
||
* [email protected]/syslog-ng--dev-folti--2.0--patch-7 | ||
Refresh: Fixed: AIX5.2 packaging support. (fixes: #10375) | ||
|
||
* [email protected]/syslog-ng--dev-folti--2.0--patch-8 | ||
Refresh: Fixes: added libevtlog-dev build dependency. (fixes: #10375) | ||
|
||
* [email protected]/syslog-ng--dev-folti--2.0--patch-9 | ||
Refresh: Fixed: RPM packaging for 2.0. (fixes: #nobug) | ||
|
||
* [email protected]/syslog-ng--dev-folti--2.0--patch-10 | ||
Fixed: removed duplicated install commanands from spec file. (fixes #nobug) | ||
|
||
|
||
new files: | ||
contrib/aix-packaging/.arch-ids/=id | ||
contrib/aix-packaging/.arch-ids/syslog-ng.conf.id | ||
contrib/aix-packaging/syslog-ng.conf | ||
|
||
modified files: | ||
ChangeLog contrib/Makefile.am syslog-ng.spec.bb.in | ||
|
||
new directories: | ||
contrib/aix-packaging contrib/aix-packaging/.arch-ids | ||
|
||
new patches: | ||
[email protected]/syslog-ng--dev-folti--2.0--patch-2 | ||
[email protected]/syslog-ng--dev-folti--2.0--patch-3 | ||
[email protected]/syslog-ng--dev-folti--2.0--patch-5 | ||
[email protected]/syslog-ng--dev-folti--2.0--patch-7 | ||
[email protected]/syslog-ng--dev-folti--2.0--patch-8 | ||
[email protected]/syslog-ng--dev-folti--2.0--patch-9 | ||
[email protected]/syslog-ng--dev-folti--2.0--patch-10 | ||
|
||
|
||
2007-01-29 08:48:19 GMT Balazs Scheidler <[email protected]> patch-123 | ||
|
||
Summary: | ||
|
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,86 @@ | ||
# | ||
# sample configuration file for syslog-ng on AIX | ||
# users should customize to fit their needs | ||
# | ||
|
||
# log syslog-ng's own messages to /var/log/syslog-ng.log | ||
|
||
source s_internal { | ||
internal(); | ||
}; | ||
|
||
destination d_syslognglog { | ||
file("/var/log/syslog-ng.log" owner("root") group("adm") perm(0640)); | ||
}; | ||
|
||
log { | ||
source(s_internal); | ||
destination(d_syslognglog); | ||
}; | ||
|
||
# log everything to /var/log/messages | ||
|
||
source s_local { | ||
unix-dgram("/dev/log"); | ||
}; | ||
|
||
destination d_messages { | ||
file("/var/log/messages" owner("root") group("adm") perm(0640)); | ||
}; | ||
|
||
log { | ||
source(s_local); | ||
destination(d_messages); | ||
}; | ||
|
||
# Remote logging | ||
# | ||
#source s_remote { | ||
# tcp(ip(0.0.0.0) port(514)); | ||
# udp(ip(0.0.0.0) port(514)); | ||
#}; | ||
# | ||
#destination d_separatedbyhosts { | ||
# file("/var/log/syslog-ng/$HOST/messages" owner("root") group("root") perm(0640) dir_perm(0750) create_dirs(yes)); | ||
#}; | ||
# | ||
#log { | ||
# source(s_remote); | ||
# destination(d_separatedbyhosts); | ||
#}; | ||
|
||
# | ||
# Local filters examples | ||
# | ||
|
||
#filter f_messages { level(info..emerg); }; | ||
#filter f_secure { facility(authpriv); }; | ||
#filter f_mail { facility(mail); }; | ||
#filter f_cron { facility(cron); }; | ||
#filter f_emerg { level(emerg); }; | ||
#filter f_spooler { level(crit..emerg) and facility(uucp, news); }; | ||
#filter f_local7 { facility(local7); }; | ||
|
||
# | ||
# Local destination examples | ||
# | ||
|
||
#destination d_secure { file("/var/log/secure"); }; | ||
#destination d_maillog { file("/var/log/maillog"); }; | ||
#destination d_cron { file("/var/log/cron"); }; | ||
#destination d_console { usertty("root"); }; | ||
#destination d_spooler { file("/var/log/spooler"); }; | ||
#destination d_bootlog { file("/var/log/boot.log"); }; | ||
|
||
# | ||
# Local log examples - order DOES matter ! | ||
# | ||
#log { source(s_local); filter(f_emerg); destination(d_console); }; | ||
#log { source(s_local); filter(f_secure); destination(d_secure); flags(final); }; | ||
#log { source(s_local); filter(f_maillog); destination(d_maillog); flags(final); }; | ||
#log { source(s_local); filter(f_cron); destination(d_cron); flags(final); }; | ||
#log { source(s_local); filter(f_spooler); destination(d_spooler); }; | ||
#log { source(s_local); filter(f_local7); destination(d_bootlog); }; | ||
#log { source(s_local); filter(f_messages); destination(d_messages); }; | ||
|
||
|
Oops, something went wrong.