mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 15:35:10 -04:00
12 lines
185 B
Text
12 lines
185 B
Text
# $FreeBSD$
|
|
|
|
# It is not immediately obvious that this should work, and someone probably
|
|
# relies on it.
|
|
|
|
while :; do
|
|
trap 'break' USR1
|
|
kill -USR1 $$
|
|
echo bad
|
|
exit 1
|
|
done
|
|
echo good
|