File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vopono"
3
3
description = " Launch applications via VPN tunnels using temporary network namespaces"
4
- version = " 0.10.2 "
4
+ version = " 0.10.3 "
5
5
authors = [
" James McMurray <[email protected] >" ]
6
6
edition = " 2021"
7
7
license = " GPL-3.0-or-later"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vopono_core"
3
3
description = " Library code for running VPN connections in network namespaces"
4
- version = " 0.1.2 "
4
+ version = " 0.1.3 "
5
5
edition = " 2021"
6
6
authors = [
" James McMurray <[email protected] >" ]
7
7
license = " GPL-3.0-or-later"
Original file line number Diff line number Diff line change @@ -376,9 +376,9 @@ impl NetworkNamespace {
376
376
dns : Option < & Vec < IpAddr > > ,
377
377
hosts_entries : Option < & Vec < String > > ,
378
378
) -> anyhow:: Result < ( ) > {
379
- self . provider
380
- . get_dyn_wireguard_provider ( ) ?
381
- . wireguard_preup ( config_file . as_path ( ) ) ? ;
379
+ if let Ok ( wgprov ) = self . provider . get_dyn_wireguard_provider ( ) {
380
+ wgprov . wireguard_preup ( config_file . as_path ( ) ) ? ;
381
+ }
382
382
383
383
self . wireguard = Some ( Wireguard :: run (
384
384
self ,
You can’t perform that action at this time.
0 commit comments