mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 12:02:00 +08:00
10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pid=$(cat /var/run/packet_capture.pid)
|
|
if [ -n "$pid" ] && grep -sq packet_capture "/proc/$pid/cmdline"; then
|
|
ppid=$(pgrep -P $pid)
|
|
kill -TERM $ppid
|
|
fi
|
|
|
|
exit 0
|