Skip to content

Commit

Permalink
Use pipe as syslog destination instead of file
Browse files Browse the repository at this point in the history
  • Loading branch information
mblaschke committed Jan 19, 2017
1 parent 7f428bc commit 282f6d6
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docker/base/alpine-3/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/centos-7/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/debian-7/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/debian-8/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/debian-9/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/ubuntu-12.04/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/ubuntu-14.04/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/ubuntu-15.04/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/ubuntu-15.10/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion docker/base/ubuntu-16.04/conf/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion provisioning/base/alpine/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };
2 changes: 1 addition & 1 deletion provisioning/base/general/etc/syslog-ng/syslog-ng.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ source s_src {
internal();
};

destination d_all { file("/docker.stdout"); };
destination d_all { pipe("/docker.stdout"); };
log { source(s_src); destination(d_all); };

0 comments on commit 282f6d6

Please sign in to comment.