mirror of
https://github.com/opnsense/src.git
synced 2026-02-17 01:31:45 -05:00
5 lines
103 B
Bash
Executable file
5 lines
103 B
Bash
Executable file
#!/bin/sh
|
|
|
|
kill -INT `ps -ax | egrep " ppp " | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
|
|
|
|
exit 0
|