From: Fiona Ebner Date: Thu, 15 Feb 2024 12:59:30 +0000 (+0100) Subject: ui: node: system: avoid using 'Syslog' X-Git-Url: https://git.proxmox.com/?p=pve-manager.git;a=commitdiff_plain;h=7304254a76fb4aacbe12c56b004be5de082daa54 ui: node: system: avoid using 'Syslog' Reported in the community forum [0]. Since Proxmox VE 8/Debian 12, rsyslog is not installed by default for new installations anymore [1]. The information gathered by the API call comes from the systemd journal. While 'Syslog' could be interpreted as a shorthand for "System Log", it's better to be explicit to avoid any confusion. In addition, the systemd journal does much more than plain syslog messages, as argued by Fabian [2]. [0]: https://forum.proxmox.com/threads/141631/post-634675 [1]: https://www.debian.org/releases/bookworm/amd64/release-notes/ch-information.en.html#changes-to-system-logging [2]: https://lists.proxmox.com/pipermail/pve-devel/2024-February/061765.html Signed-off-by: Fiona Ebner [TL: Mention and link to Fabian's argument ] Signed-off-by: Thomas Lamprecht --- diff --git a/www/manager6/node/Config.js b/www/manager6/node/Config.js index 4d9062f3..d27592ce 100644 --- a/www/manager6/node/Config.js +++ b/www/manager6/node/Config.js @@ -244,7 +244,7 @@ Ext.define('PVE.node.Config', { if (caps.nodes['Sys.Syslog']) { me.items.push({ xtype: 'proxmoxJournalView', - title: 'Syslog', + title: gettext('System Log'), iconCls: 'fa fa-list', groups: ['services'], disabled: !caps.nodes['Sys.Syslog'],