From 8f284ca95526501586806f5d9f3b4276aebb941d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Wed, 10 Jun 2026 09:29:53 +0000 Subject: [PATCH] fix boggus permissions on directories --- cookbooks/samba/Makefile | 2 +- cookbooks/vmagent/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbooks/samba/Makefile b/cookbooks/samba/Makefile index 07acac7..8694dad 100644 --- a/cookbooks/samba/Makefile +++ b/cookbooks/samba/Makefile @@ -2,4 +2,4 @@ include ../../scripts/common.mk $(TARGET_CHROOT)/etc/quadlets/samba/smb.conf.d: - install -d -m 0700 -o $(PROJECT_UID) -g $(PROJECT_GID) -D $< $@ + install -d -m 0700 -o $(PROJECT_UID) -g $(PROJECT_GID) -D $@ diff --git a/cookbooks/vmagent/Makefile b/cookbooks/vmagent/Makefile index d92bedc..bd56a47 100644 --- a/cookbooks/vmagent/Makefile +++ b/cookbooks/vmagent/Makefile @@ -12,4 +12,4 @@ include ../../scripts/common.mk SYSTEMD_MAIN_UNIT_NAMES += vmagent.service $(TARGET_CHROOT)/etc/quadlets/vmagent/conf.d: - install -d -m 0700 -o $(PROJECT_UID) -g $(PROJECT_GID) -D $< $@ + install -d -m 0700 -o $(PROJECT_UID) -g $(PROJECT_GID) -D $@