Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions op-mode-definitions/show-log.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -875,10 +875,10 @@
</completionHelp>
</properties>
<standalone>
<help>Show last 10 lines of /var/log/messages file</help>
<command>tail -n 10 /var/log/messages</command>
<help>Show given number of the latest log messages (default: 10)</help>
<command>journalctl --reverse --lines 10</command>
</standalone>
<command>tail -n "$4" /var/log/messages | ${VYATTA_PAGER:-cat}</command>
<command>journalctl --reverse --lines "$4"</command>
</tagNode>
<leafNode name="vpn">
<properties>
Expand Down
Loading