Merge pull request #15486 from dfr/freebsd-syslog

cmd/podman: Enable --syslog on FreeBSD
This commit is contained in:
OpenShift Merge Robot
2022-08-26 08:51:55 -04:00
committed by GitHub
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
//go:build linux || freebsd
// +build linux freebsd
package main
import (

View File

@ -1,5 +1,5 @@
//go:build !linux
// +build !linux
//go:build !linux && !freebsd
// +build !linux,!freebsd
package main