diff --git a/internal/manager/config/config.go b/internal/manager/config/config.go index 7a013add..54177e81 100644 --- a/internal/manager/config/config.go +++ b/internal/manager/config/config.go @@ -106,20 +106,6 @@ type Base struct { MQTT MQTTConfig `yaml:"mqtt"` } -// GarbageCollect contains the config options for the GC. -type ShamanGarbageCollect struct { - // How frequently garbage collection is performed on the file store: - Period Duration `yaml:"period"` - // How old files must be before they are GC'd: - MaxAge Duration `yaml:"maxAge"` - // Paths to check for symlinks before GC'ing files. - ExtraCheckoutDirs []string `yaml:"extraCheckoutPaths"` - - // Used by the -gc CLI arg to silently disable the garbage collector - // while we're performing a manual sweep. - SilentlyDisable bool `yaml:"-"` -} - // MQTTConfig contains the configuration options for MQTT broker (idea for the future) and client. type MQTTConfig struct { Client eventbus.MQTTClientConfig `yaml:"client"`