mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-02 09:47:03 +03:00
85cf0a962e
(cherry picked from commit d1020334fd15e0cffe68cb4d7e862a36253cc481)
15 lines
211 B
Bash
Executable File
15 lines
211 B
Bash
Executable File
#!/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
|