From 9f727e5536a2ce2e9f381fe100c38e0dd3123f06 Mon Sep 17 00:00:00 2001 From: Stefan Reiter Date: Thu, 22 Apr 2021 17:34:48 +0200 Subject: [PATCH] PBSClient: adapt error message to include full package names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit More helpful for a user to know what they're missing. Suggested-by: Dominic Jäger Signed-off-by: Stefan Reiter --- src/PVE/PBSClient.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/PBSClient.pm b/src/PVE/PBSClient.pm index 857cff0..16f7765 100644 --- a/src/PVE/PBSClient.pm +++ b/src/PVE/PBSClient.pm @@ -141,7 +141,7 @@ my sub do_raw_client_cmd { my $client_exe = (delete $opts{binary}) || 'proxmox-backup-client'; $client_exe = "/usr/bin/$client_exe"; - die "executable not found '$client_exe'! Proxmox backup client or file restore not installed?\n" + die "executable not found '$client_exe'! proxmox-backup-client or proxmox-backup-file-restore not installed?\n" if ! -x $client_exe; my $scfg = $self->{scfg};