diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-06-15 00:18:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-15 00:18:53 +0200 |
commit | 90e3c9002b2293569e0cec168a30ecb962b00034 (patch) | |
tree | 709da03b7768049b8a8f1228e29905a8ce40c635 /cmd/podman/main.go | |
parent | cba622b6097959d7659d4cfa05637cce672b87d6 (diff) | |
parent | c866e441d026350a3216f46e36e77278784b6afc (diff) | |
download | podman-90e3c9002b2293569e0cec168a30ecb962b00034.tar.gz podman-90e3c9002b2293569e0cec168a30ecb962b00034.tar.bz2 podman-90e3c9002b2293569e0cec168a30ecb962b00034.zip |
Merge pull request #3328 from mheon/storage_opts_for_cleanup
When creating exit command, pass storage options on
Diffstat (limited to 'cmd/podman/main.go')
-rw-r--r-- | cmd/podman/main.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/podman/main.go b/cmd/podman/main.go index a149a47f9..cbca32cc8 100644 --- a/cmd/podman/main.go +++ b/cmd/podman/main.go @@ -104,6 +104,9 @@ func before(cmd *cobra.Command, args []string) error { logrus.Errorf(err.Error()) os.Exit(1) } + if err := setSyslog(); err != nil { + return err + } if err := setupRootless(cmd, args); err != nil { return err } |