alpine-repo/sakamoto/wg0-openrc/wg0

16 lines
146 B
Plaintext
Raw Normal View History

2021-07-04 19:15:30 +02:00
#!/sbin/openrc-run
depend() {
need localmount net
use dns
after bootmisc
}
start() {
wg-quick up wg0
}
stop() {
wg-quick down wg0
}