diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-07 07:25:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-07 07:25:58 +0100 |
commit | dff740f3cfb57757146d465d994499c552876359 (patch) | |
tree | 6ad08283c75363f154fc8d1567b4a16bee8dd878 /op-mode-definitions/show-log.xml.in | |
parent | 31d824d9b6bce13ea8fa2a838d47cdf24b345fb1 (diff) | |
parent | 9ab6665c80c30bf446d94620fc9d85b052d48072 (diff) | |
download | vyos-1x-dff740f3cfb57757146d465d994499c552876359.tar.gz vyos-1x-dff740f3cfb57757146d465d994499c552876359.zip |
Merge pull request #2758 from c-po/certbot-T5886
pki: T5886: add support for ACME protocol (LetsEncrypt)
Diffstat (limited to 'op-mode-definitions/show-log.xml.in')
-rw-r--r-- | op-mode-definitions/show-log.xml.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/op-mode-definitions/show-log.xml.in b/op-mode-definitions/show-log.xml.in index b013bdfe4..a6ce04624 100644 --- a/op-mode-definitions/show-log.xml.in +++ b/op-mode-definitions/show-log.xml.in @@ -38,6 +38,12 @@ </properties> <command>journalctl --no-hostname --boot --quiet SYSLOG_FACILITY=10 SYSLOG_FACILITY=4</command> </leafNode> + <leafNode name="certbot"> + <properties> + <help>Show log for certbot</help> + </properties> + <command>if sudo test -f /var/log/letsencrypt/letsencrypt.log; then sudo cat /var/log/letsencrypt/letsencrypt.log; else echo "Cerbot log does not exist"; fi</command> + </leafNode> <leafNode name="cluster"> <properties> <help>Show log for Cluster</help> |