diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-04-24 09:15:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 09:15:43 +0300 |
commit | 33b4f340b6ede9a72ff06dd23ecee49528360918 (patch) | |
tree | 26159cbbf3e50ba0f7f2175023823f286c99721a | |
parent | 2ea5aa9b5832a073b4e8d2fcdc7190d01f6a1519 (diff) | |
parent | 9865cd931aa80eccb1052cbef9827740a5285488 (diff) | |
download | vyos-1x-33b4f340b6ede9a72ff06dd23ecee49528360918.tar.gz vyos-1x-33b4f340b6ede9a72ff06dd23ecee49528360918.zip |
Merge pull request #3358 from vyos/mergify/bp/sagitta/pr-3355
T6109: Fix remote logging for sudo commands (backport #3355)
-rw-r--r-- | src/etc/rsyslog.conf | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/etc/rsyslog.conf b/src/etc/rsyslog.conf index 9781f0835..b3f41acb6 100644 --- a/src/etc/rsyslog.conf +++ b/src/etc/rsyslog.conf @@ -15,21 +15,6 @@ $KLogPath /proc/kmsg #### GLOBAL DIRECTIVES #### ########################### -# The lines below cause all listed daemons/processes to be logged into -# /var/log/auth.log, then drops the message so it does not also go to the -# regular syslog so that messages are not duplicated - -$outchannel auth_log,/var/log/auth.log -if $programname == 'CRON' or - $programname == 'sudo' or - $programname == 'su' - then :omfile:$auth_log - -if $programname == 'CRON' or - $programname == 'sudo' or - $programname == 'su' - then stop - # Use traditional timestamp format. # To enable high precision timestamps, comment out the following line. # A modern-style logfile format similar to TraditionalFileFormat, buth with high-precision timestamps and timezone information @@ -60,6 +45,21 @@ $Umask 0022 # $IncludeConfig /etc/rsyslog.d/*.conf +# The lines below cause all listed daemons/processes to be logged into +# /var/log/auth.log, then drops the message so it does not also go to the +# regular syslog so that messages are not duplicated + +$outchannel auth_log,/var/log/auth.log +if $programname == 'CRON' or + $programname == 'sudo' or + $programname == 'su' + then :omfile:$auth_log + +if $programname == 'CRON' or + $programname == 'sudo' or + $programname == 'su' + then stop + ############### #### RULES #### ############### |