alpine-repo/sakamoto/wg0-openrc/wg0

16 lines
146 B
Plaintext

#!/sbin/openrc-run
depend() {
need localmount net
use dns
after bootmisc
}
start() {
wg-quick up wg0
}
stop() {
wg-quick down wg0
}