pkg/libcontainer/security/restrict/unsupported.go
Michael Crosby af5420420b Update restrictions for better handling of mounts
This also cleans up some of the left over restriction paths code from
before.
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
2014-05-01 15:26:58 -07:00

9 lines
112 B
Go

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