From c5c53990675763aa4e62115600a9cc5a1e28d9af Mon Sep 17 00:00:00 2001 From: Florian Schade Date: Thu, 18 Dec 2025 09:56:17 +0100 Subject: [PATCH] fix: make the common config available for the antivirus service --- opencloud/pkg/command/services.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opencloud/pkg/command/services.go b/opencloud/pkg/command/services.go index b25823476c..a3622cf871 100644 --- a/opencloud/pkg/command/services.go +++ b/opencloud/pkg/command/services.go @@ -61,7 +61,7 @@ var serviceCommands = []register.Command{ }, func(cfg *config.Config) *cobra.Command { return ServiceCommand(cfg, cfg.Antivirus.Service.Name, antivirus.GetCommands(cfg.Antivirus), func(c *config.Config) { - // cfg.Antivirus.Commons = cfg.Commons // antivirus needs no commons atm + cfg.Antivirus.Commons = cfg.Commons }) }, func(cfg *config.Config) *cobra.Command {