13 lines
125 B
Bash
Executable File
13 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# Get OpenVPN server status
|
|
#
|
|
if [ "$DEBUG" == "1" ]; then
|
|
set -x
|
|
fi
|
|
|
|
set -e
|
|
|
|
tail -F /tmp/openvpn-status.log
|