diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-01 21:24:47 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-01 21:25:43 +0200 |
commit | 4e09be0cd9ad18a8b2af5789a9bf2814b8702c61 (patch) | |
tree | 37f673f6defa4d2bb663823958aa6d0b91bb250f /op-mode-definitions | |
parent | 7927a8bbd51b8b07c3996507e7c3dfe5b0525e83 (diff) | |
download | vyos-1x-4e09be0cd9ad18a8b2af5789a9bf2814b8702c61.tar.gz vyos-1x-4e09be0cd9ad18a8b2af5789a9bf2814b8702c61.zip |
op-mode: logging: T4308: use full option name (--boot)
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/show-log.xml.in | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/op-mode-definitions/show-log.xml.in b/op-mode-definitions/show-log.xml.in index 2d75f119d..15bbc7f42 100644 --- a/op-mode-definitions/show-log.xml.in +++ b/op-mode-definitions/show-log.xml.in @@ -221,67 +221,67 @@ <properties> <help>Show log for OSPF</help> </properties> - <command>journalctl -b /usr/lib/frr/ospfd</command> + <command>journalctl --boot /usr/lib/frr/ospfd</command> </leafNode> <leafNode name="ospfv3"> <properties> <help>Show log for OSPF for IPv6</help> </properties> - <command>journalctl -b /usr/lib/frr/ospf6d</command> + <command>journalctl --boot /usr/lib/frr/ospf6d</command> </leafNode> <leafNode name="bgp"> <properties> <help>Show log for BGP</help> </properties> - <command>journalctl -b /usr/lib/frr/bgpd</command> + <command>journalctl --boot /usr/lib/frr/bgpd</command> </leafNode> <leafNode name="rip"> <properties> <help>Show log for RIP</help> </properties> - <command>journalctl -b /usr/lib/frr/ripd</command> + <command>journalctl --boot /usr/lib/frr/ripd</command> </leafNode> <leafNode name="ripng"> <properties> <help>Show log for RIPng</help> </properties> - <command>journalctl -b /usr/lib/frr/ripngd</command> + <command>journalctl --boot /usr/lib/frr/ripngd</command> </leafNode> <leafNode name="static"> <properties> <help>Show log for static route</help> </properties> - <command>journalctl -b /usr/lib/frr/staticd</command> + <command>journalctl --boot /usr/lib/frr/staticd</command> </leafNode> <leafNode name="multicast"> <properties> <help>Show log for Multicast protocol</help> </properties> - <command>journalctl -b /usr/lib/frr/pimd</command> + <command>journalctl --boot /usr/lib/frr/pimd</command> </leafNode> <leafNode name="isis"> <properties> <help>Show log for ISIS</help> </properties> - <command>journalctl -b /usr/lib/frr/isisd</command> + <command>journalctl --boot /usr/lib/frr/isisd</command> </leafNode> <leafNode name="nhrp"> <properties> <help>Show log for NHRP</help> </properties> - <command>journalctl -b /usr/lib/frr/nhrpd</command> + <command>journalctl --boot /usr/lib/frr/nhrpd</command> </leafNode> <leafNode name="bfd"> <properties> <help>Show log for BFD</help> </properties> - <command>journalctl -b /usr/lib/frr/bfdd</command> + <command>journalctl --boot /usr/lib/frr/bfdd</command> </leafNode> <leafNode name="mpls"> <properties> <help>Show log for MPLS</help> </properties> - <command>journalctl -b /usr/lib/frr/ldpd</command> + <command>journalctl --boot /usr/lib/frr/ldpd</command> </leafNode> </children> </node> |