diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-08-31 16:27:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-31 16:27:01 -0400 |
commit | 2491f3d6b2de5e6e5af2178bae2a260a3106b8a4 (patch) | |
tree | 04bc6d9e5ab9b19e7728a90ff4d48b0e4efe515f /cmd/podman/common.go | |
parent | a917f8fa2a0d9130d84bfda0c40bfe1af68d505c (diff) | |
parent | 27ca091c08674b1a34058c9639d60455023ffa30 (diff) | |
download | podman-2491f3d6b2de5e6e5af2178bae2a260a3106b8a4.tar.gz podman-2491f3d6b2de5e6e5af2178bae2a260a3106b8a4.tar.bz2 podman-2491f3d6b2de5e6e5af2178bae2a260a3106b8a4.zip |
Merge pull request #1318 from rhatdan/systemd
Add proper support for systemd inside of podman
Diffstat (limited to 'cmd/podman/common.go')
-rw-r--r-- | cmd/podman/common.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/common.go b/cmd/podman/common.go index 93b16f4e3..43a0fe061 100644 --- a/cmd/podman/common.go +++ b/cmd/podman/common.go @@ -383,6 +383,10 @@ var createFlags = []cli.Flag{ Name: "sysctl", Usage: "Sysctl options (default [])", }, + cli.BoolTFlag{ + Name: "systemd", + Usage: "Run container in systemd mode if the command executable is systemd or init", + }, cli.StringSliceFlag{ Name: "tmpfs", Usage: "Mount a temporary filesystem (`tmpfs`) into a container (default [])", |