1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-22 05:33:10 +02:00

11 lines
291 B
Go
Raw Normal View History

package docker
import (
"github.com/SAP/jenkins-library/pkg/piperutils"
)
// IsBinfmtMiscSupportedByHost checks if the hosts kernel does support binfmt_misc
func IsBinfmtMiscSupportedByHost(utils piperutils.FileUtils) (bool, error) {
return utils.DirExists("/proc/sys/fs/binfmt_misc")
}