944f52c5bb
- Modifed the spec file to install all binaires in /usr/sbin instead of /sbin to align with the "usrmerge" initiative in openSUSE. (bsc#1195914) Also modified the following files that SUSE provides that need to reflect this change: * 59-graf.rules * dasd_configure * dasd_reload * detach_disks.sh * iucv_configure * killcdl * mkdump.pl * README.SUSE * s390-tools-sles12-update-by_id-links-on-change-and-add-action.patch * virtsetup.sh * vmlogrdr.service - Added s390-tools-sles15sp4-libseckey-Adapt-keymgmt_match-implementation-to-Open.patch for bsc#1199649. zkey: KMIP plugin fails to connection to KMIP server When a zkey key repository is bound to the KMIP plugin, and the connection to the KMIP server is to be configired using command 'zkey kms configure --kmip-server <server>', it fails to connect to the specified KMIP server. - Added s390-tools-sles15sp4-genprotimg-boot-disable-Warray-bounds-for-now.patch to fix a build failure with gcc12. With gcc12, a "false positive" of "array subscript 0 is outside array bounds" is seen in genprotimg/boot/stage3a.c (bsc#1200131). OBS-URL: https://build.opensuse.org/request/show/980529 OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=137
35 lines
1.4 KiB
Diff
35 lines
1.4 KiB
Diff
From f7a0f391f2c4e8acc96b21ab5de54a178aa60088 Mon Sep 17 00:00:00 2001
|
|
From: Hannes Reinecke <hare@suse.de>
|
|
Date: Fri, 22 Nov 2013 15:39:38 +0100
|
|
Subject: [PATCH] 59-dasd.rules: generate by-id links on 'change' and 'add'
|
|
|
|
The by-id rules need to be triggered on both, 'change' and 'add',
|
|
to work correctly during restarting udev.
|
|
|
|
References: bnc#808042
|
|
|
|
Signed-off-by: Robert Milasan <rmilasan@suse.de>
|
|
---
|
|
etc/udev/rules.d/59-dasd.rules | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/etc/udev/rules.d/59-dasd.rules b/etc/udev/rules.d/59-dasd.rules
|
|
index 2b1435c..a08cb7c 100644
|
|
--- a/etc/udev/rules.d/59-dasd.rules
|
|
+++ b/etc/udev/rules.d/59-dasd.rules
|
|
@@ -6,9 +6,9 @@
|
|
SUBSYSTEM!="block", GOTO="dasd_symlinks_end"
|
|
KERNEL!="dasd*", GOTO="dasd_symlinks_end"
|
|
|
|
-ACTION!="change", GOTO="dasd_block_end"
|
|
+ACTION!="change|add", GOTO="dasd_block_end"
|
|
# by-id (hardware serial number)
|
|
-KERNEL=="dasd*[!0-9]", ATTRS{status}=="online", IMPORT{program}="/sbin/dasdinfo -a -e -b $kernel"
|
|
+KERNEL=="dasd*[!0-9]", ATTRS{status}=="online", IMPORT{program}="/usr/sbin/dasdinfo -a -e -b $kernel"
|
|
KERNEL=="dasd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
|
|
KERNEL=="dasd*[!0-9]", ENV{ID_UID}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_UID}"
|
|
KERNEL=="dasd*[!0-9]", ENV{ID_XUID}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_XUID}"
|
|
--
|
|
1.8.1.4
|
|
|