dumb-init/tests/lib/testlib.sh

5 lines
130 B
Bash
Raw Normal View History

2015-08-05 20:56:55 +03:00
catchable_signals() {
2015-08-10 19:32:56 +03:00
# We can't handle the signals SIGKILL=9, SIGCHLD=17, SIGSTOP=19
seq 1 31 | grep -vE '^(9|17|19)$'
2015-08-05 20:56:55 +03:00
}