Merge pull request #6527 from subhraveti/cap-whitelist

Maintain a whitelist of capabilities rather than droplist
This commit is contained in:
Victor Vieux 2014-06-19 14:48:38 -07:00
commit 087f008fc2

View file

@ -28,3 +28,11 @@ func GetClockTicks() int {
func CreateMasterAndConsole() (*os.File, string, error) { func CreateMasterAndConsole() (*os.File, string, error) {
return nil, "", ErrNotSupportedPlatform return nil, "", ErrNotSupportedPlatform
} }
func SetKeepCaps() error {
return ErrNotSupportedPlatform
}
func ClearKeepCaps() error {
return ErrNotSupportedPlatform
}