From d054e3c343439b59eb252e4b3c1677b52378b0d9 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 26 May 2026 08:56:12 +0200 Subject: [PATCH] defs.mk: Add .toml to default config file formats Anticipating future additions, support installing *.toml as a standard configuration file format. Signed-off-by: Jan Lindemann --- make/defs.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/defs.mk b/make/defs.mk index ca2585f7..572716ff 100644 --- a/make/defs.mk +++ b/make/defs.mk @@ -306,7 +306,7 @@ ifeq ($(CONFIG_SUBDIR),) else INSTALL_CFGDIR ?= $(CONFIG_DIR)/$(CONFIG_SUBDIR) endif -LOCAL_CFG ?= $(filter-out %.site.conf, $(filter-out rsyslog-%, $(wildcard *.conf *.xml *.bprof *.jw-tmpl *.ini *.yaml))) $(LOCAL_EXTRA_CFG) +LOCAL_CFG ?= $(filter-out %.site.conf, $(filter-out rsyslog-%, $(wildcard *.conf *.xml *.bprof *.jw-tmpl *.ini *.yaml *.toml))) $(LOCAL_EXTRA_CFG) INSTALLED_CFG ?= $(addprefix $(INSTALL_CFGDIR)/,$(LOCAL_CFG)) # -- TMPFILES