fix: handle NostrVpn provider in VPN disconnect match
Some checks failed
Build Archipelago ISO (dev) / build-iso (push) Failing after 11m7s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-04-07 14:53:26 +01:00
parent 0aefacf3b9
commit e042b3d563

View File

@@ -190,6 +190,12 @@ impl RpcHandler {
.output()
.await;
}
vpn::VpnProvider::NostrVpn => {
let _ = tokio::process::Command::new("systemctl")
.args(["stop", "nostr-vpn"])
.output()
.await;
}
}
info!("VPN disconnected");