diff options
Diffstat (limited to 'libpod/boltdb_state.go')
-rw-r--r-- | libpod/boltdb_state.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/boltdb_state.go b/libpod/boltdb_state.go index 8f6bd579f..f5d0afc4a 100644 --- a/libpod/boltdb_state.go +++ b/libpod/boltdb_state.go @@ -140,6 +140,9 @@ func (s *BoltState) Refresh() error { state.Mountpoint = "" state.Mounted = false state.State = ContainerStateConfigured + state.IPAddress = "" + state.SubnetMask = "" + state.ExecSessions = make(map[string]int) newStateBytes, err := json.Marshal(state) if err != nil { |