File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ Unreleased]
8
8
9
+ ### Fixed
10
+ - stop: Destroy epair interface if stop is not called from start (#229 )
11
+
9
12
## [ 0.15.2] 2022-09-17
10
13
### Fixed
11
14
- start: fix pot getting stuck in state "starting" on pot start failure (#227 )
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ _js_stop()
41
41
_pdir=" ${POT_FS_ROOT} /jails/$_pname "
42
42
_network_type=$( _get_pot_network_type " $_pname " )
43
43
if _is_pot_running " $_pname " ; then
44
- if _is_pot_vnet " $_pname " && [ -z " $_epair " ] && [ " $_from_start " = " YES " ] ; then
44
+ if _is_pot_vnet " $_pname " && [ -z " $_epair " ]; then
45
45
_epair=$( jexec " $_pname " ifconfig | grep ^epair | cut -d' :' -f1)
46
46
_epair=" ${_epair% b} a"
47
47
fi
You can’t perform that action at this time.
0 commit comments