b12c28dde8
Delete stale symlinks created by current openSUSE 13.1 for kpartx loopback partitions. Those break bootloader installation otherwise. Change-Id: I13a7387e341b4426b459610fd1d3c49ce5730f46
9 lines
187 B
Bash
Executable File
9 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
if [ "openSUSE project" = "$(lsb_release -is)" ]; then
|
|
# workaround for https://bugzilla.novell.com/show_bug.cgi?id=859493
|
|
rm -f /dev/mapper/loop*_part1
|
|
fi
|