mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
use pkill for socat shutdown
This commit is contained in:
parent
12d47893fe
commit
e22a08bb7a
|
@ -26,9 +26,9 @@ function start_socat {
|
||||||
|
|
||||||
function stop_socat {
|
function stop_socat {
|
||||||
echo "Stopping socat..."
|
echo "Stopping socat..."
|
||||||
ps aux | grep '[s]ocat' | awk '{print $2}' | xargs kill -15 |& tee /dev/null
|
pkill -15 -f socat
|
||||||
sleep 5
|
sleep 5
|
||||||
ps aux | grep '[s]ocat' | awk '{print $2}' | xargs kill -9 |& tee /dev/null
|
pkill -9 -f socat
|
||||||
}
|
}
|
||||||
|
|
||||||
function keep_running {
|
function keep_running {
|
||||||
|
|
Loading…
Reference in a new issue