mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-31 03:22:05 +08:00
10 lines
159 B
Bash
Executable File
10 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete network.ovpn_server
|
|
commit network
|
|
EOF
|
|
|
|
ifup ovpn_server >/dev/null 2>&1
|
|
ifdown ovpn_server >/dev/null 2>&1
|