1
0
mirror of https://github.com/containers/buildah.git synced 2026-02-05 09:45:38 +01:00

Add run support for FreeBSD

This duplicates over a thousand lines of code from run_linux.go.
Subsequent commits will move this code to a new file run_common.go.

Signed-off-by: Doug Rabson <dfr@rabson.org>
This commit is contained in:
Doug Rabson
2022-04-21 15:15:40 +01:00
parent 3faa69848d
commit 1c0a08e3c5
2 changed files with 2287 additions and 2 deletions

2285
run_freebsd.go Normal file

File diff suppressed because it is too large Load Diff

View File

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