5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2025-01-22 06:04:10 +03:00

pbs: rework client exe handling and error message

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-04-23 14:14:36 +02:00
parent f7c0254131
commit 76ddb876d9

View File

@ -140,12 +140,11 @@ my $USE_CRYPT_PARAMS = {
my sub do_raw_client_cmd {
my ($self, $client_cmd, $param, %opts) = @_;
my $client_bin = (delete $opts{binary}) || 'proxmox-backup-client';
my $use_crypto = $USE_CRYPT_PARAMS->{$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 proxmox-backup-file-restore not installed?\n"
if ! -x $client_exe;
my $client_exe = "/usr/bin/$client_bin";
die "executable not found '$client_exe'! $client_bin not installed?\n" if ! -x $client_exe;
my $scfg = $self->{scfg};
my $repo = get_repository($scfg);