diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-08-20 07:10:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-20 07:10:34 -0400 |
commit | 7d8650cce82e67fb998b9f8a89c66a51b4c98285 (patch) | |
tree | 757b724f94af33be8fee12658f7f55d81db92f4f /libpod/container.go | |
parent | 30b036c5d394bb523fa13074b1731ad4b6259693 (diff) | |
parent | c22f3e8b4e2593ca81d08924889f7e7251c83089 (diff) | |
download | podman-7d8650cce82e67fb998b9f8a89c66a51b4c98285.tar.gz podman-7d8650cce82e67fb998b9f8a89c66a51b4c98285.tar.bz2 podman-7d8650cce82e67fb998b9f8a89c66a51b4c98285.zip |
Merge pull request #11246 from vrothberg/sdnotify=container
Implement SD-NOTIFY proxy in conmon
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/container.go b/libpod/container.go index 80fd35c09..c57250d72 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -126,6 +126,10 @@ type Container struct { // This is true if a container is restored from a checkpoint. restoreFromCheckpoint bool + // Used to query the NOTIFY_SOCKET once along with setting up + // mounts etc. + notifySocket string + slirp4netnsSubnet *net.IPNet } |