diff options
author | Robert Göhler <github@ghlr.de> | 2021-05-28 19:40:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 19:40:25 +0200 |
commit | 262d740652a4b8258b2d724cc9f1192ee0329d4c (patch) | |
tree | ea0e8b2784da8302204a792caec4a7d49b0506e2 | |
parent | 546eced065d473ad2a1e2a7ef0bf8def6ff43ab3 (diff) | |
parent | 041e8e07a460ed7b9d78fab42115fe5c7a8c9c50 (diff) | |
download | vyos-documentation-262d740652a4b8258b2d724cc9f1192ee0329d4c.tar.gz vyos-documentation-262d740652a4b8258b2d724cc9f1192ee0329d4c.zip |
Merge pull request #541 from srividya0208/syslog
system:syslog: added delete log file section
-rw-r--r-- | docs/configuration/system/syslog.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/configuration/system/syslog.rst b/docs/configuration/system/syslog.rst index a4d641b5..9ba9d415 100644 --- a/docs/configuration/system/syslog.rst +++ b/docs/configuration/system/syslog.rst @@ -26,6 +26,7 @@ Console :ref:`syslog_facilities` keywords and :ref:`syslog_severity_level` keywords see tables below. +.. _custom-file: Custom File ----------- @@ -229,3 +230,16 @@ displayed. .. hint:: Use ``show log | strip-private`` if you want to hide private data when sharing your logs. + +Delete Logs +=========== + +.. opcmd:: delete log file <text> + +Deletes the specified user-defined file <text> in the /var/log/user directory + +Note that deleting the log file does not stop the system from logging events. +If you use this command while the system is logging events, old log events +will be deleted, but events after the delete operation will be recorded in +the new file. To delete the file altogether, first delete logging to the +file using system syslog :ref:`custom-file` command, and then delete the file. |