services: wireguard: Shepherd 'stop' method really stops.
Until now the 'stop' method would return #t, which shepherd would interpret as "services could not be stopped". * gnu/services/vpn.scm (wireguard-shepherd-service): Have 'stop' return #f.master
parent
4f9ac2afc7
commit
3c0c6ee573
|
@ -814,7 +814,8 @@ PostUp = ~a set %i private-key ~a
|
||||||
(start #~(lambda _
|
(start #~(lambda _
|
||||||
(invoke #$wg-quick "up" #$config)))
|
(invoke #$wg-quick "up" #$config)))
|
||||||
(stop #~(lambda _
|
(stop #~(lambda _
|
||||||
(invoke #$wg-quick "down" #$config)))
|
(invoke #$wg-quick "down" #$config)
|
||||||
|
#f)) ;stopped!
|
||||||
(documentation "Run the Wireguard VPN tunnel"))))))
|
(documentation "Run the Wireguard VPN tunnel"))))))
|
||||||
|
|
||||||
(define wireguard-service-type
|
(define wireguard-service-type
|
||||||
|
|
Reference in New Issue