mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
18 lines
171 B
Bash
Executable File
18 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
. $(dirname ${0})/util/lib.sh
|
|
|
|
init
|
|
|
|
FAILED=0
|
|
|
|
for i in t-*; do
|
|
echo $i ...
|
|
setsid -w $i/run.sh
|
|
FAILED=$(( $FAILED + $? ))
|
|
echo
|
|
done
|
|
|
|
exit $FAILED
|