diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-03 00:02:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 00:02:20 +0200 |
commit | 26bb48951fa55924fd4cdb9b2ef72e19a471b959 (patch) | |
tree | 202118fd8fe72e215b9795cb8d1f506a69dc62cb /libpod/oci.go | |
parent | 4632a4b706e94fce7f85e53659dd04484d988ac7 (diff) | |
parent | 69020c7040415b532f4fe5aaaacdbd288a67b71e (diff) | |
download | podman-26bb48951fa55924fd4cdb9b2ef72e19a471b959.tar.gz podman-26bb48951fa55924fd4cdb9b2ef72e19a471b959.tar.bz2 podman-26bb48951fa55924fd4cdb9b2ef72e19a471b959.zip |
Merge pull request #6468 from mheon/remote_detached_exec
Enable detached exec for remote
Diffstat (limited to 'libpod/oci.go')
-rw-r--r-- | libpod/oci.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/oci.go b/libpod/oci.go index 7c5218319..684a7ba42 100644 --- a/libpod/oci.go +++ b/libpod/oci.go @@ -172,6 +172,9 @@ type ExecOptions struct { // ExitCommand is a command that will be run after the exec session // exits. ExitCommand []string + // ExitCommandDelay is a delay (in seconds) between the exec session + // exiting, and the exit command being invoked. + ExitCommandDelay uint } // HTTPAttachStreams informs the HTTPAttach endpoint which of the container's |