From: Thomas Lamprecht Date: Wed, 1 Jul 2020 10:07:19 +0000 (+0200) Subject: scan_cifs: do not enforce password for users X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=67a23711808ca8464f7e1b900c234b35e0a5d275;p=pve-storage.git scan_cifs: do not enforce password for users there can be accounts with explicit null password others than the mapped guest account. Signed-off-by: Thomas Lamprecht --- diff --git a/PVE/Storage.pm b/PVE/Storage.pm index 42e769a..1de2bcb 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -1198,7 +1198,6 @@ sub scan_cifs { my $cmd = ['/usr/bin/smbclient', '-m', 'smb3', '-d', '0', '-L', $server]; push @$cmd, '-N' if !defined($user); push @$cmd, '-W', $domain if defined($domain); - die "password is required\n" if defined($user) && !defined($password); local $ENV{USER} = $user if defined($user); local $ENV{PASSWD} = $password if defined($password);