mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
repart: fix the loop dev support check
Since f17bdf8264e231fa31c769bff2475ef698487d0b the test-repart was effectively disabled, since `/dev/loop-control` is a character special file, whereas `-f` works only on regular files. Even though we could use `-c` to check specifically for character special files, let's use `-e` just in case.
This commit is contained in:
parent
ceffd6a961
commit
3a1bc3fcc0
@ -2,7 +2,7 @@
|
||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
set -ex
|
||||
|
||||
[[ -f /dev/loop-control ]] || exit 77
|
||||
[[ -e /dev/loop-control ]] || exit 77
|
||||
|
||||
repart=$1
|
||||
test -x $repart
|
||||
|
Loading…
x
Reference in New Issue
Block a user