diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-10 14:58:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-10 14:58:41 -0700 |
commit | fd389d28ce2223550c82d809cbafa12a54e733e6 (patch) | |
tree | af13237275b82f7635ee06e2d079c7630926cdd5 /docs/podman-run.1.md | |
parent | cec8edd6f5067ea8336fe9d386b78ed1e7161fd6 (diff) | |
parent | 5963077e93937046b6b13d6f1da8c1f932c0e6ff (diff) | |
download | podman-fd389d28ce2223550c82d809cbafa12a54e733e6.tar.gz podman-fd389d28ce2223550c82d809cbafa12a54e733e6.tar.bz2 podman-fd389d28ce2223550c82d809cbafa12a54e733e6.zip |
Merge pull request #4206 from giuseppe/systemd-mode-look-full-path
systemd: expect full path /usr/sbin/init
Diffstat (limited to 'docs/podman-run.1.md')
-rw-r--r-- | docs/podman-run.1.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/podman-run.1.md b/docs/podman-run.1.md index dfc634288..e255119d7 100644 --- a/docs/podman-run.1.md +++ b/docs/podman-run.1.md @@ -747,12 +747,18 @@ Network Namespace - current sysctls allowed: Note: if you use the `--network=host` option these sysctls will not be allowed. -**--systemd**=*true|false* +**--systemd**=*true|false|always* Run container in systemd mode. The default is *true*. -If the command you are running inside of the container is systemd or init, Podman -will setup tmpfs mount points in the following directories: +The value *always* enforces the systemd mode is enforced without +looking at the executable name. Otherwise, if set to true and the +command you are running inside the container is systemd or +/usr/sbin/init. + +If the command you are running inside of the container is systemd or +/usr/sbin/init, Podman will setup tmpfs mount points in the following +directories: /run, /run/lock, /tmp, /sys/fs/cgroup/systemd, /var/lib/journal |