mirror of
https://github.com/OpenMTC/OpenMTC.git
synced 2024-12-27 16:28:57 +00:00
8 lines
142 B
Plaintext
8 lines
142 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# make it possible to specify other signal values, defaults to kill
|
||
|
KILL_SIGNAL=${1:--9}
|
||
|
|
||
|
pkill ${KILL_SIGNAL} -f backend_main.py
|
||
|
|