only kill if present

This commit is contained in:
dadav 2020-04-18 11:29:54 +02:00
parent 1be17b1f99
commit 2b17e5322b

@ -177,7 +177,8 @@ EOF
pkill wpa_supplicant
pkill dnsmasq
kill "$(pgrep -f "decryption-webserver")"
pid="$(pgrep -f "decryption-webserver")"
[[ -n "$pid" ]] && kill "$pid"
return 0
}