mirror of
https://github.com/clearlinux/docker.git
synced 2026-08-22 22:56:17 +00:00
Runtime: Only remove device on destroy if it exists
This commit is contained in:
committed by
Victor Vieux
parent
3343b3f8f8
commit
e1c418cac3
+1
-1
@@ -287,7 +287,7 @@ func (runtime *Runtime) Destroy(container *Container) error {
|
||||
if err := os.RemoveAll(container.root); err != nil {
|
||||
return fmt.Errorf("Unable to remove filesystem for %v: %v", container.ID, err)
|
||||
}
|
||||
if runtime.GetMountMethod() == MountMethodDeviceMapper {
|
||||
if runtime.GetMountMethod() == MountMethodDeviceMapper && runtime.deviceSet.HasDevice(container.ID) {
|
||||
if err := runtime.deviceSet.RemoveDevice(container.ID); err != nil {
|
||||
return fmt.Errorf("Unable to remove device for %v: %v", container.ID, err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user