mirror of
https://github.com/OpenMTC/OpenMTC.git
synced 2024-12-19 04:58:01 +00:00
7 lines
141 B
Bash
Executable File
7 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# make it possible to specify other signal values, defaults to kill
|
|
KILL_SIGNAL=${1:--9}
|
|
|
|
pkill ${KILL_SIGNAL} -f gateway_main.py
|