mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-18 20:08:03 +00:00
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
|