mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-11 05:17:44 +03:00
TEST-58: exit immediately if systemd-repart is not available
Debian disables systemd-repart at config time.
This commit is contained in:
parent
dd1fa6c89a
commit
f89a20f1d4
@ -2,6 +2,11 @@
|
||||
set -eux
|
||||
set -o pipefail
|
||||
|
||||
if ! command -v systemd-repart &>/dev/null; then
|
||||
echo "no systemd-repart" >/skipped
|
||||
exit 0
|
||||
fi
|
||||
|
||||
export SYSTEMD_LOG_LEVEL=debug
|
||||
export PAGER=cat
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user