kill.go: Remove unnecessary checks

... that prevent sending signals not mentioned in signal map.
Currently these are SIGRTMIN..SIGRTMAX.

Signed-off-by: Valentin Kulesh <valentin.kulesh@virtuozzo.com>
This commit is contained in:
Valentin Kulesh 2018-01-26 09:48:25 +03:00
parent 9f9c96235c
commit 7ac503d1a2
No known key found for this signature in database
GPG Key ID: 550E826DCD635489
1 changed files with 1 additions and 7 deletions

View File

@ -61,13 +61,7 @@ signal to the init process of the "ubuntu01" container:
func parseSignal(rawSignal string) (syscall.Signal, error) {
s, err := strconv.Atoi(rawSignal)
if err == nil {
sig := syscall.Signal(s)
for _, msig := range signalMap {
if sig == msig {
return sig, nil
}
}
return -1, fmt.Errorf("unknown signal %q", rawSignal)
return syscall.Signal(s), nil
}
signal, ok := signalMap[strings.TrimPrefix(strings.ToUpper(rawSignal), "SIG")]
if !ok {