* [PATCH 0/1] sysklogd: removed tabs from syslog.conf @ 2012-08-10 9:07 Mihai Lindner 2012-08-10 9:07 ` [PATCH 1/1] " Mihai Lindner 2012-08-16 18:27 ` [PATCH 0/1] " Saul Wold 0 siblings, 2 replies; 3+ messages in thread From: Mihai Lindner @ 2012-08-10 9:07 UTC (permalink / raw) To: openembedded-core Yocto #2926: syslog.conf should not have tabs within the selector field. Removed tabs from the selector field of syslog rules. Tabs or spaces should be used, in syslog.conf, only when separating selectors from actions. Signed-off-by: Mihai Lindner <mihaix.lindner@linux.intel.com> --- The following changes since commit 2dec760b79bb7e2e79c33c5127fa64685bd86a18: foomatic: fix perl path for target (2012-08-08 10:06:00 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ml/syslog.conf http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ml/syslog.conf Mihai Lindner (1): sysklogd: removed tabs from syslog.conf meta/recipes-extended/sysklogd/files/syslog.conf | 23 +++++++++++---------- meta/recipes-extended/sysklogd/sysklogd_1.5.bb | 2 +- 2 files changed, 13 insertions(+), 12 deletions(-) -- 1.7.8.6 ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] sysklogd: removed tabs from syslog.conf 2012-08-10 9:07 [PATCH 0/1] sysklogd: removed tabs from syslog.conf Mihai Lindner @ 2012-08-10 9:07 ` Mihai Lindner 2012-08-16 18:27 ` [PATCH 0/1] " Saul Wold 1 sibling, 0 replies; 3+ messages in thread From: Mihai Lindner @ 2012-08-10 9:07 UTC (permalink / raw) To: openembedded-core Yocto #2926: syslog.conf should not have tabs within the selector field. Removed tabs from the selector field of syslog rules. Tabs or spaces should be used, in syslog.conf, only when separating selectors from actions. Signed-off-by: Mihai Lindner <mihaix.lindner@linux.intel.com> --- meta/recipes-extended/sysklogd/files/syslog.conf | 23 +++++++++++---------- meta/recipes-extended/sysklogd/sysklogd_1.5.bb | 2 +- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/meta/recipes-extended/sysklogd/files/syslog.conf b/meta/recipes-extended/sysklogd/files/syslog.conf index 7d1858c..0849de1 100644 --- a/meta/recipes-extended/sysklogd/files/syslog.conf +++ b/meta/recipes-extended/sysklogd/files/syslog.conf @@ -34,12 +34,13 @@ news.notice -/var/log/news.notice # Some `catch-all' logfiles. # *.=debug;\ - auth,authpriv.none;\ - news.none;mail.none -/var/log/debug +auth,authpriv.none;\ +news.none;mail.none -/var/log/debug + *.=info;*.=notice;*.=warn;\ - auth,authpriv.none;\ - cron,daemon.none;\ - mail,news.none -/var/log/messages +auth,authpriv.none;\ +cron,daemon.none;\ +mail,news.none -/var/log/messages # # Emergencies are sent to everybody logged in. @@ -51,9 +52,9 @@ news.notice -/var/log/news.notice # console I usually leave idle. # #daemon,mail.*;\ -# news.=crit;news.=err;news.=notice;\ -# *.=debug;*.=info;\ -# *.=notice;*.=warn /dev/tty8 +#news.=crit;news.=err;news.=notice;\ +#*.=debug;*.=info;\ +#*.=notice;*.=warn /dev/tty8 # The named pipe /dev/xconsole is for the `xconsole' utility. To use it, # you must invoke `xconsole' with the `-file' option: @@ -64,7 +65,7 @@ news.notice -/var/log/news.notice # busy site.. # daemon.*;mail.*;\ - news.err;\ - *.=debug;*.=info;\ - *.=notice;*.=warn |/dev/xconsole +news.err;\ +*.=debug;*.=info;\ +*.=notice;*.=warn |/dev/xconsole diff --git a/meta/recipes-extended/sysklogd/sysklogd_1.5.bb b/meta/recipes-extended/sysklogd/sysklogd_1.5.bb index 471c8c8..5c95889 100644 --- a/meta/recipes-extended/sysklogd/sysklogd_1.5.bb +++ b/meta/recipes-extended/sysklogd/sysklogd_1.5.bb @@ -1,5 +1,5 @@ require sysklogd.inc -PR = "r6" +PR = "r7" SRC_URI[md5sum] = "e053094e8103165f98ddafe828f6ae4b" SRC_URI[sha256sum] = "6169b8e91d29288e90404f01462b69e7f2afb1161aa419826fe4736c7f9eb773" -- 1.7.8.6 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/1] sysklogd: removed tabs from syslog.conf 2012-08-10 9:07 [PATCH 0/1] sysklogd: removed tabs from syslog.conf Mihai Lindner 2012-08-10 9:07 ` [PATCH 1/1] " Mihai Lindner @ 2012-08-16 18:27 ` Saul Wold 1 sibling, 0 replies; 3+ messages in thread From: Saul Wold @ 2012-08-16 18:27 UTC (permalink / raw) To: Patches and discussions about the oe-core layer On 08/10/2012 02:07 AM, Mihai Lindner wrote: > Yocto #2926: syslog.conf should not have tabs within the selector field. > Removed tabs from the selector field of syslog rules. Tabs or spaces > should be used, in syslog.conf, only when separating selectors from > actions. > > Signed-off-by: Mihai Lindner <mihaix.lindner@linux.intel.com> > --- > The following changes since commit 2dec760b79bb7e2e79c33c5127fa64685bd86a18: > > foomatic: fix perl path for target (2012-08-08 10:06:00 +0100) > > are available in the git repository at: > git://git.yoctoproject.org/poky-contrib ml/syslog.conf > http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ml/syslog.conf > > Mihai Lindner (1): > sysklogd: removed tabs from syslog.conf > > meta/recipes-extended/sysklogd/files/syslog.conf | 23 +++++++++++---------- > meta/recipes-extended/sysklogd/sysklogd_1.5.bb | 2 +- > 2 files changed, 13 insertions(+), 12 deletions(-) > Merged into OE-Core Thanks Sau! ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-08-16 18:39 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-08-10 9:07 [PATCH 0/1] sysklogd: removed tabs from syslog.conf Mihai Lindner 2012-08-10 9:07 ` [PATCH 1/1] " Mihai Lindner 2012-08-16 18:27 ` [PATCH 0/1] " Saul Wold
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox