mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-28 22:36:24 +01:00
6 lines
103 B
Plaintext
6 lines
103 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
kill -INT `ps -ax | egrep " ppp " | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
|
||
|
|
||
|
exit 0
|