]> git.proxmox.com Git - pve-storage.git/commitdiff
pbs: run_raw_client_cmd: fix typo, and drop repetive info
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 7 Jul 2020 08:14:00 +0000 (10:14 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 7 Jul 2020 08:15:59 +0000 (10:15 +0200)
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 <t.lamprecht@proxmox.com>
PVE/Storage/PBSPlugin.pm

index 01dea2b1ba8a0b867a9648d01c5db2b2f80920c0..092d80073afffec4b4d416fb3f3809e8013da1cd 100644 (file)
@@ -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);