From e6d1edcb9313e85d8fb3e9002b7dda80b754cf45 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 7 Jul 2020 10:14:00 +0200 Subject: [PATCH] pbs: run_raw_client_cmd: fix typo, and drop repetive info It would be s/bps/pbs/ but as we already have "proxmox-backup-client" included in the log through the executable name, so it should be clear that this is a PBS command - so drop that part entirely. Now using: > run: /usr/bin/proxmox-backup-client ... Signed-off-by: Thomas Lamprecht --- PVE/Storage/PBSPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/PBSPlugin.pm b/PVE/Storage/PBSPlugin.pm index 01dea2b..092d800 100644 --- a/PVE/Storage/PBSPlugin.pm +++ b/PVE/Storage/PBSPlugin.pm @@ -128,7 +128,7 @@ sub run_raw_client_cmd { local $ENV{PROXMOX_OUTPUT_NO_HEADER} = 1; if (my $logfunc = $opts{logfunc}) { - $logfunc->("run bps command: " . join(' ', @$cmd)); + $logfunc->("run: " . join(' ', @$cmd)); } run_command($cmd, %opts); -- 2.39.2