pkg/libcontainer/security/restrict/unsupported.go
Michael Crosby 5d1a3b2ab5 Update to enable cross compile
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
2014-05-01 15:26:58 -07:00

9 lines
132 B
Go

// +build !linux
package restrict
import "fmt"
func Restrict(rootfs, empty string) error {
return fmt.Errorf("not supported")
}