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