diff options
author | Adrian Reber <areber@redhat.com> | 2019-08-01 17:23:02 +0000 |
---|---|---|
committer | Adrian Reber <areber@redhat.com> | 2019-08-02 10:10:54 +0200 |
commit | c23b92b4090d1aab96ddde2c897db8869eb6261e (patch) | |
tree | 177a3b86284af7c0bfcf260e687d3c32ba955304 /libpod/container_api.go | |
parent | afb493ae9b1cc98db1f6d9a211b561bb245692de (diff) | |
download | podman-c23b92b4090d1aab96ddde2c897db8869eb6261e.tar.gz podman-c23b92b4090d1aab96ddde2c897db8869eb6261e.tar.bz2 podman-c23b92b4090d1aab96ddde2c897db8869eb6261e.zip |
restore: added --ignore-static-ip option
If a container is restored multiple times from an exported checkpoint
with the help of '--import --name', the restore will fail if during
'podman run' a static container IP was set with '--ip'. The user can
tell the restore process to ignore the static IP with
'--ignore-static-ip'.
Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'libpod/container_api.go')
-rw-r--r-- | libpod/container_api.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpod/container_api.go b/libpod/container_api.go index cd020e429..5ed474a98 100644 --- a/libpod/container_api.go +++ b/libpod/container_api.go @@ -773,6 +773,11 @@ type ContainerCheckpointOptions struct { // IgnoreRootfs tells the API to not export changes to // the container's root file-system (or to not import) IgnoreRootfs bool + // IgnoreStaticIP tells the API to ignore the IP set + // during 'podman run' with '--ip'. This is especially + // important to be able to restore a container multiple + // times with '--import --name'. + IgnoreStaticIP bool } // Checkpoint checkpoints a container |