mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
One less bashism. No kill -SIGNAL
. Instead kill -s SIGNAL
.
This commit is contained in:
parent
879bc6ce83
commit
ba06a7203e
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ __exit_cleanup() {
|
|||
trap "__trap_errors" INT KILL QUIT
|
||||
|
||||
# Now we're "good" to kill tee
|
||||
kill -TERM $TEE_PID
|
||||
kill -s TERM $TEE_PID
|
||||
|
||||
# In case the 127 errno is not triggered, exit with the "original" exit code
|
||||
exit $EXIT_CODE
|
||||
|
|
Loading…
Add table
Reference in a new issue