218a82336b
- Applied patches for ziomon: fix for SCSI devices of type disk without block dev (bsc#1211008) * s390-tools-sles15sp5-01-ziomon-ziorep_config-fix-missing-SG-major-minor-for-.patch * s390-tools-sles15sp5-02-ziomon-ziorep_config-fix-for-SCSI-devices-of-type-di.patch OBS-URL: https://build.opensuse.org/request/show/1084572 OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=171
20 lines
691 B
Diff
20 lines
691 B
Diff
---
|
|
ziomon/ziorep_config | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/ziomon/ziorep_config
|
|
+++ b/ziomon/ziorep_config
|
|
@@ -123,11 +123,11 @@ sub get_device_data
|
|
} else {
|
|
$devices{$hctl}{dev} = glob_last("block\:sd*");
|
|
}
|
|
+ $devices{$hctl}{sg_mm} = get_line("generic", "dev");
|
|
$c_src = $devices{$hctl}{dev};
|
|
$devices{$hctl}{dev} =~ s/.*(sd[a-z0-9]+)\Z/$1/
|
|
unless(!$devices{$hctl}{dev});
|
|
$devices{$hctl}{mm} = get_line("dev");
|
|
- $devices{$hctl}{sg_mm} = get_line("generic", "dev");
|
|
$devices{$hctl}{mp_dev} = glob_last("holders", "dm*");
|
|
$devices{$hctl}{mp_dev} =~ s/.*\/(.+)\Z/$1/
|
|
unless (!$devices{$hctl}{mp_dev});
|