mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
config: allow keys to be deleted from the config file
This commit is contained in:
parent
ade61fa756
commit
88ef475629
@ -1196,6 +1196,13 @@ func ConfigFileSet(section, key, value string) {
|
||||
configData.SetValue(section, key, value)
|
||||
}
|
||||
|
||||
// ConfigFileDeleteKey deletes the config key in the config file.
|
||||
// It returns true if the key was deleted,
|
||||
// or returns false if the section or key didn't exist.
|
||||
func ConfigFileDeleteKey(section, key string) bool {
|
||||
return configData.DeleteKey(section, key)
|
||||
}
|
||||
|
||||
var matchEnv = regexp.MustCompile(`^RCLONE_CONFIG_(.*?)_TYPE=.*$`)
|
||||
|
||||
// ConfigFileSections returns the sections in the config file
|
||||
|
Loading…
Reference in New Issue
Block a user