Skip to content

Commit

Permalink
Merge pull request containers#8543 from mheon/no_syslog_true
Browse files Browse the repository at this point in the history
Do not use "true" after "syslog" in exit commands
  • Loading branch information
openshift-merge-robot authored Dec 2, 2020
2 parents c585012 + bf6b228 commit 9c5fe95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/specgen/generate/container_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ func CreateExitCommandArgs(storageConfig storage.StoreOptions, config *config.Co
}

if syslog {
command = append(command, "--syslog", "true")
command = append(command, "--syslog")
}
command = append(command, []string{"container", "cleanup"}...)

Expand Down

0 comments on commit 9c5fe95

Please sign in to comment.