Files
wlan-cloud-ucentralgw/stop.sh
2021-07-11 06:50:04 -07:00

9 lines
137 B
Bash
Executable File

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