diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2018-03-26 20:09:10 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-29 01:34:41 +0000 |
commit | f936b745b66de3cbbdf924a26bb35766afe5acba (patch) | |
tree | b96c47ea63b428f0a7eecf82313e3426eabd3ab1 /libpod/options.go | |
parent | ecda694a92242e6e6921d42b52847bb909eb8051 (diff) | |
download | podman-f936b745b66de3cbbdf924a26bb35766afe5acba.tar.gz podman-f936b745b66de3cbbdf924a26bb35766afe5acba.tar.bz2 podman-f936b745b66de3cbbdf924a26bb35766afe5acba.zip |
podman: new option --conmon-pidfile=
so that it is possible to use systemd to automatically restart the
container:
[Service]
Type=forking
PIDFile=/run/awesome-service.pid
ExecStart=/usr/bin/podman run --conmon-pidfile=/run/awesome-service.pid --name awesome -d IMAGE /usr/bin/do-something
ExecStopPost=/usr/bin/podman rm awesome
Restart=always
Closes: https://github.com/projectatomic/libpod/issues/534
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Closes: #549
Approved by: rhatdan
Diffstat (limited to 'libpod/options.go')
-rw-r--r-- | libpod/options.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libpod/options.go b/libpod/options.go index 7cbe9afb4..987a37429 100644 --- a/libpod/options.go +++ b/libpod/options.go @@ -766,3 +766,14 @@ func WithHosts(hosts []string) CtrCreateOption { return nil } } + +// WithConmonPidFile specifies the path to the file that receives the pid of conmon +func WithConmonPidFile(path string) CtrCreateOption { + return func(ctr *Container) error { + if ctr.valid { + return ErrCtrFinalized + } + ctr.config.ConmonPidFile = path + return nil + } +} |