diff options
| author | Christian Breunig <christian@breunig.cc> | 2023-01-23 06:33:45 +0100 | 
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2023-01-23 06:33:45 +0100 | 
| commit | 68a8cd2612cb1b00d381059747de8107f38e8c96 (patch) | |
| tree | 6788622a4b36756471e48c7383be911dd81d8860 | |
| parent | 237e28f1d2ab48b70058a0f1788da54e43dccb2c (diff) | |
| download | vyos-1x-68a8cd2612cb1b00d381059747de8107f38e8c96.tar.gz vyos-1x-68a8cd2612cb1b00d381059747de8107f38e8c96.zip | |
op-mode: add "show|monitor log ipoe-server" command
| -rw-r--r-- | op-mode-definitions/monitor-log.xml.in | 6 | ||||
| -rw-r--r-- | op-mode-definitions/show-log.xml.in | 6 | 
2 files changed, 12 insertions, 0 deletions
| diff --git a/op-mode-definitions/monitor-log.xml.in b/op-mode-definitions/monitor-log.xml.in index 212f4a54b..7feedaf7f 100644 --- a/op-mode-definitions/monitor-log.xml.in +++ b/op-mode-definitions/monitor-log.xml.in @@ -93,6 +93,12 @@              </properties>              <command>journalctl --no-hostname --boot --follow --unit uacctd.service</command>            </leafNode> +          <leafNode name="ipoe-server"> +            <properties> +              <help>Monitor last lines of IPoE server log</help> +            </properties> +            <command>journalctl --no-hostname --boot --follow --unit accel-ppp@ipoe.service</command> +          </leafNode>            <leafNode name="kernel">              <properties>                <help>Monitor last lines of Linux Kernel log</help> diff --git a/op-mode-definitions/show-log.xml.in b/op-mode-definitions/show-log.xml.in index cebbdc075..69e2b880e 100644 --- a/op-mode-definitions/show-log.xml.in +++ b/op-mode-definitions/show-log.xml.in @@ -196,6 +196,12 @@                </tagNode>              </children>            </tagNode> +          <leafNode name="ipoe-server"> +            <properties> +              <help>Show log for IPoE server</help> +            </properties> +            <command>journalctl --no-hostname --boot --unit accel-ppp@ipoe.service</command> +          </leafNode>            <leafNode name="kernel">              <properties>                <help>Show log for Linux Kernel</help> | 
