We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7150e8d commit 7c1639bCopy full SHA for 7c1639b
validate/validate.go
@@ -337,11 +337,11 @@ func (v *Validator) CheckRlimits() (msgs []string) {
337
func supportedMountTypes(OS string, hostSpecific bool) (map[string]bool, error) {
338
supportedTypes := make(map[string]bool)
339
340
- if OS != "linux" && OS != "windows" {
+ if OS != "linux" && OS != "solaris" {
341
logrus.Warnf("%v is not supported to check mount type", OS)
342
return nil, nil
343
- } else if OS == "windows" {
344
- supportedTypes["ntfs"] = true
+ } else if OS == "solaris" {
+ supportedTypes["lofs"] = true
345
return supportedTypes, nil
346
}
347
0 commit comments