5
0
mirror of git://git.proxmox.com/git/pve-zsync.git synced 2025-03-11 20:58:42 +03:00

replace $is_disk with an early check

This commit is contained in:
Wolfgang Bumiller 2015-09-28 11:40:05 +02:00 committed by Dietmar Maurer
parent 78cd57dd19
commit 845e36d770

View File

@ -692,10 +692,10 @@ sub parse_disks {
my $line = $1;
next if $line =~ /cdrom|none/;
next if $line !~ m/^(?:virtio|ide|scsi|sata)\d+: /;
my $disk = undef;
my $stor = undef;
my $is_disk = $line =~ m/^(virtio|ide|scsi|sata){1}\d+: /;
if($line =~ m/^(virtio\d+: )(.+:)([A-Za-z0-9\-]+),(.*)$/) {
$disk = $3;
$stor = $2;
@ -708,10 +708,10 @@ sub parse_disks {
} elsif($line =~ m/^(sata\d+: )(.+:)([A-Za-z0-9\-]+),(.*)$/) {
$disk = $3;
$stor = $2;
} else {
die "disk is not on ZFS Storage\n";
}
die "disk is not on ZFS Storage\n" if $is_disk && !$disk;
if($disk) {
my $cmd = "";
$cmd .= "ssh root\@$ip " if $ip;