mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralsec.git
synced 2025-10-28 17:32:29 +00:00
9 lines
138 B
Bash
Executable File
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
|