You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
/*
|
|
* MinIO Cloud Storage, (C) 2020 MinIO, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package heal
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/minio/minio/cmd/config"
|
|
)
|
|
|
|
// Compression environment variables
|
|
const (
|
|
Bitrot = "bitrotscan"
|
|
)
|
|
|
|
// Config represents the heal settings.
|
|
type Config struct {
|
|
// Bitrot will perform bitrot scan on local disk when checking objects.
|
|
Bitrot bool `json:"bitrotscan"`
|
|
}
|
|
|
|
var (
|
|
// DefaultKVS - default KV config for heal settings
|
|
DefaultKVS = config.KVS{
|
|
config.KV{
|
|
Key: Bitrot,
|
|
Value: config.EnableOff,
|
|
},
|
|
}
|
|
|
|
// Help provides help for config values
|
|
Help = config.HelpKVS{
|
|
config.HelpKV{
|
|
Key: Bitrot,
|
|
Description: `perform bitrot scan on disks when checking objects during crawl`,
|
|
Optional: true,
|
|
Type: "on|off",
|
|
},
|
|
}
|
|
)
|
|
|
|
// LookupConfig - lookup config and override with valid environment settings if any.
|
|
func LookupConfig(kvs config.KVS) (cfg Config, err error) {
|
|
if err = config.CheckValidKeys(config.HealSubSys, kvs, DefaultKVS); err != nil {
|
|
return cfg, err
|
|
}
|
|
bitrot := kvs.Get(Bitrot)
|
|
if bitrot != config.EnableOn && bitrot != config.EnableOff {
|
|
return cfg, errors.New(Bitrot + ": must be 'on' or 'off'")
|
|
}
|
|
cfg.Bitrot = bitrot == config.EnableOn
|
|
return cfg, nil
|
|
}
|
|
|