diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2022-12-30 10:50:56 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2022-12-30 10:50:56 +0000 |
commit | eb20e6e4dab158dd43d7c344e7b8c4d546e90969 (patch) | |
tree | 52c2edc54397a6784d6e80f9a6893ab856640ac3 | |
parent | 939abb78db991427bee9b0fb208e03800d1a0e27 (diff) | |
download | draklive-config-eb20e6e4dab158dd43d7c344e7b8c4d546e90969.tar draklive-config-eb20e6e4dab158dd43d7c344e7b8c4d546e90969.tar.gz draklive-config-eb20e6e4dab158dd43d7c344e7b8c4d546e90969.tar.bz2 draklive-config-eb20e6e4dab158dd43d7c344e7b8c4d546e90969.tar.xz draklive-config-eb20e6e4dab158dd43d7c344e7b8c4d546e90969.zip |
Update os-prober-hang-fix.patch to match upstream changes.
-rw-r--r-- | patches/os-prober-hang-fix.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/os-prober-hang-fix.patch b/patches/os-prober-hang-fix.patch index 569e520..b572d92 100644 --- a/patches/os-prober-hang-fix.patch +++ b/patches/os-prober-hang-fix.patch @@ -3,10 +3,10 @@ @@ -38,6 +38,9 @@ elif [ "$types" = swap ]; then debug "$1 is a swap partition; skipping" - exit 0 + exit 1 +elif [ "$types" = iso9660 ]; then + debug "$1 is a iso9660 partition; skipping" -+ exit 0 ++ exit 1 elif [ "$types" = crypto_LUKS ]; then debug "$1 is a LUKS partition; skipping" - exit 0 + exit 1 |