mirror of
https://github.com/containers/podman.git
synced 2025-10-27 19:34:13 +08:00
Merge pull request #7825 from rhatdan/exitcode
Fix handling of remove of bogus volumes, networks and Pods
This commit is contained in:
@ -162,6 +162,9 @@ var (
|
||||
// in a pod. This cannot be done as the infra container has all the network information
|
||||
ErrNetworkOnPodContainer = errors.New("network cannot be configured when it is shared with a pod")
|
||||
|
||||
// ErrNetworkInUse indicates the requested operation failed because the network was in use
|
||||
ErrNetworkInUse = errors.New("network is being used")
|
||||
|
||||
// ErrStoreNotInitialized indicates that the container storage was never
|
||||
// initialized.
|
||||
ErrStoreNotInitialized = errors.New("the container storage was never initialized")
|
||||
|
||||
Reference in New Issue
Block a user