mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-03-20 10:50:12 +03:00
15 lines
211 B
Bash
15 lines
211 B
Bash
|
#!/usr/bin/env bash
|
||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
set -eux
|
||
|
set -o pipefail
|
||
|
|
||
|
: >/failed
|
||
|
|
||
|
for script in "${0%.sh}".*.sh; do
|
||
|
echo "Running $script"
|
||
|
"./$script"
|
||
|
done
|
||
|
|
||
|
touch /testok
|
||
|
rm /failed
|