2018-02-05 21:05:59 +00:00
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
2014-11-13 20:00:04 +00:00
|
|
|
|
2015-07-28 16:13:12 +00:00
|
|
|
// Umask is not supported on the windows platform.
|
2014-11-13 20:00:04 +00:00
|
|
|
func Umask(newmask int) (oldmask int, err error) {
|
|
|
|
// should not be called on cli code path
|
|
|
|
return 0, ErrNotSupportedPlatform
|
|
|
|
}
|