mirror of
https://github.com/pivpn/pivpn.git
synced 2025-04-24 08:10:10 +00:00
Added Alpine Linux support (#1567)
This commit is contained in:
parent
718d3df573
commit
edb36c08f7
22 changed files with 852 additions and 459 deletions
|
@ -1,6 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
systemctl status openvpn
|
||||
if command -v systemctl > /dev/null; then
|
||||
systemctl status openvpn
|
||||
elif command -v rc-service > /dev/null; then
|
||||
rc-service openvpn status
|
||||
fi
|
||||
pivpn add -n foo
|
||||
pivpn -qr foo
|
||||
pivpn -bk
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue