Files
wlan-cloud-ucentralsec/stop.sh
2021-07-09 10:12:33 -07:00

9 lines
138 B
Bash
Executable File

#!/usr/bin/env bash
pidfilename="${UCENTRALSEC_ROOT}/data/pidfile"
if [[ -f "${pidfilename}" ]]
then
kill -9 $(cat ${pidfilename})
fi