diff options
author | Christian Breunig <christian@breunig.cc> | 2024-12-16 22:25:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-16 22:25:29 +0100 |
commit | 1da518c1100254b14b064de68844cfea372ea6ec (patch) | |
tree | fe046cf9358c4258faf00910401783ddfaf26747 /op-mode-definitions | |
parent | 86b528863585e62fd398d05aa1a2e1a64dae0e45 (diff) | |
parent | 90e9aa9df41c3b99f9f1421227a1f1474622b918 (diff) | |
download | vyos-1x-1da518c1100254b14b064de68844cfea372ea6ec.tar.gz vyos-1x-1da518c1100254b14b064de68844cfea372ea6ec.zip |
Merge pull request #4227 from c-po/T6746-frr-10
frr: upgrade to 10.2 and migrate protocols to unified FRRender class
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/monitor-log.xml.in | 6 | ||||
-rwxr-xr-x | op-mode-definitions/show-log.xml.in | 8 |
2 files changed, 13 insertions, 1 deletions
diff --git a/op-mode-definitions/monitor-log.xml.in b/op-mode-definitions/monitor-log.xml.in index 6a2b7e53b..66b7ecb2f 100644 --- a/op-mode-definitions/monitor-log.xml.in +++ b/op-mode-definitions/monitor-log.xml.in @@ -365,6 +365,12 @@ </properties> <command>journalctl --no-hostname --boot --follow --unit keepalived.service</command> </leafNode> + <leafNode name="vyos-configd"> + <properties> + <help>Monitor last lines of VyOS configuration daemon log</help> + </properties> + <command>journalctl --no-hostname --boot --follow --unit vyos-configd.service</command> + </leafNode> <node name="wireless"> <properties> <help>Monitor last lines of Wireless interface log</help> diff --git a/op-mode-definitions/show-log.xml.in b/op-mode-definitions/show-log.xml.in index c2504686d..b032f5e38 100755 --- a/op-mode-definitions/show-log.xml.in +++ b/op-mode-definitions/show-log.xml.in @@ -836,7 +836,7 @@ </node> <leafNode name="vpn"> <properties> - <help>Monitor last lines of ALL Virtual Private Network services</help> + <help>Show log for ALL Virtual Private Network services</help> </properties> <command>journalctl --no-hostname --boot --unit strongswan.service --unit accel-ppp@*.service --unit ocserv.service</command> </leafNode> @@ -893,6 +893,12 @@ </properties> <command>journalctl --no-hostname --boot --unit keepalived.service</command> </leafNode> + <leafNode name="vyos-configd"> + <properties> + <help>Show log for VyOS configuration daemon</help> + </properties> + <command>journalctl --no-hostname --boot --unit vyos-configd.service</command> + </leafNode> <node name="wireless"> <properties> <help>Show log for Wireless interface</help> |