http://bugzilla.opensuse.org/show_bug.cgi?id=1189003 http://bugzilla.opensuse.org/show_bug.cgi?id=1189003#c3 --- Comment #3 from Ulrich Windl <Ulrich.Windl@rz.uni-regensburg.de> --- (In reply to Arvin Schnell from comment #2)
Please provide the output of 'blkid -c /dev/null' and 'blkid -c /dev/null /dev/sd[ab]' during the attempted installation. If possible also on the previous Leap 15.2 system (assuming you try to update from there).
The easy part (Leap 15.2): util-linux-2.33.1-lp152.5.6.1.x86_64: # blkid -c /dev/null /dev/sd[ab] /dev/sda: TYPE="isw_raid_member" /dev/sdb: TYPE="isw_raid_member" Now the interesting part (Leap 15.3 installation system): Script started on 2021-08-03 17:53:20-04:00 [TERM="linux" TTY="/dev/tty2" COLUMNS="240" LINES="75"] 0:install:/ # blkid -c /dev/null /dev/sda[ab] 0:install:/ # blkid --version blkid from util-linux 2.36.2 (libblkid 2.36.2, 12-Feb-2020) 0:install:/ # exit Script done on 2021-08-03 17:54:01-04:00 [COMMAND_EXIT_CODE="0"] So no output, but why? Using strace: execve("/sbin/blkid", ["blkid", "-c", "/dev/null", "/dev/sda[ab]"], 0x7ffdd50c7f58 /* 32 vars */) = 0 ... lstat("/dev", {st_mode=S_IFDIR|0755, st_size=6180, ...}) = 0 lstat("/dev/sda[ab]", 0x7ffd5becc5b0) = -1 ENOENT (No such file or directory) access("/dev/sda[ab]", F_OK) = -1 ENOENT (No such file or directory) ... +++ exited with 2 +++ That answers what happened: Script started on 2021-08-03 18:02:20-04:00 [TERM="linux" TTY="/dev/tty2" COLUMNS="240" LINES="75"] 0:install:/ # blkid -c /dev/null /dev/sda /dev/sdb /dev/sda: TYPE="isw_raid_member" /dev/sdb: TYPE="isw_raid_member" 0:install:/ # echo $? 0 0:install:/ # blkid /dev/sda /dev/sdb;echo $? /dev/sda: TYPE="isw_raid_member" /dev/sdb: TYPE="isw_raid_member" 0 0:install:/ # exit Script done on 2021-08-03 18:04:06-04:00 [COMMAND_EXIT_CODE="0"] So I think the shell in the installation system might be the problem. -- You are receiving this mail because: You are on the CC list for the bug.