mirror of
https://github.com/theonedev/onedev.git
synced 2025-12-08 18:26:30 +00:00
16 lines
176 B
Bash
Executable File
16 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
|
|
_sighandler() {
|
|
kill -TERM "$child"
|
|
wait "$child"
|
|
exit 0
|
|
}
|
|
|
|
trap _sighandler SIGINT SIGTERM
|
|
|
|
while [ true ]; do
|
|
sleep 60 &
|
|
child=$!
|
|
wait "$child"
|
|
done
|