7 lines
137 B
Text
7 lines
137 B
Text
|
#!/bin/sh
|
||
|
if [ "$(id -u)" != 0 ]; then
|
||
|
>&2 echo "$0 must be run with root privileges!"
|
||
|
exit 1
|
||
|
fi
|
||
|
pkill --signal SIGHUP --exact openvpn
|