5 lines
60 B
Bash
5 lines
60 B
Bash
|
#!/bin/sh
|
||
|
if [ "$1" == "post" ]; then
|
||
|
openvpn-reconnect
|
||
|
fi
|