From 37a5550be980d99a24275317c4b1f03f4c9beff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Wed, 20 May 2026 15:18:51 +0000 Subject: [PATCH] fix traefik cookbook --- cookbooks/traefik/Makefile | 4 ++++ cookbooks/traefik/config/{examples => }/conf.d/ping.yaml | 0 cookbooks/traefik/config/{examples => }/traefik.yaml | 0 3 files changed, 4 insertions(+) rename cookbooks/traefik/config/{examples => }/conf.d/ping.yaml (100%) rename cookbooks/traefik/config/{examples => }/traefik.yaml (100%) diff --git a/cookbooks/traefik/Makefile b/cookbooks/traefik/Makefile index a4e0789..0daaf02 100644 --- a/cookbooks/traefik/Makefile +++ b/cookbooks/traefik/Makefile @@ -6,5 +6,9 @@ PROJECT_UID = 10001 PROJECT_GID = 10000 +TARGET_FILES += $(TARGET_CHROOT)/etc/quadlets/traefik/conf.d +$(TARGET_CHROOT)/etc/quadlets/traefik/conf.d: + install -m 0755 -o $(PROJECT_UID) -g $(PROJECT_GID) -D -d $@ + # Include common Makefile include ../../scripts/common.mk diff --git a/cookbooks/traefik/config/examples/conf.d/ping.yaml b/cookbooks/traefik/config/conf.d/ping.yaml similarity index 100% rename from cookbooks/traefik/config/examples/conf.d/ping.yaml rename to cookbooks/traefik/config/conf.d/ping.yaml diff --git a/cookbooks/traefik/config/examples/traefik.yaml b/cookbooks/traefik/config/traefik.yaml similarity index 100% rename from cookbooks/traefik/config/examples/traefik.yaml rename to cookbooks/traefik/config/traefik.yaml