[pve-devel] [PATCH manager] ui: node: system: avoid using 'Syslog'

Fiona Ebner f.ebner at proxmox.com
Thu Feb 15 13:59:30 CET 2024


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.

[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

Signed-off-by: Fiona Ebner <f.ebner at proxmox.com>
---
 www/manager6/node/Config.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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'],
-- 
2.39.2





More information about the pve-devel mailing list