From 7705765a68c2c1f8e4c147f4df1d0f1dbe465cce Mon Sep 17 00:00:00 2001 From: Lindley Vieira Date: Mon, 11 Nov 2024 16:36:50 -0300 Subject: [PATCH] Fix enable rsync for /etc/update.d When it is needed to do a /etc/update.d rsync between controllers, rsync does not find this folder. This commit adds /etc/update.d directory to rsync scope for Debian. This is an addendum to the following commit: Relates-to: I2a68091704518a4cae8507351c23e4a84d1ea027 Test-plan: PASS: rsync a /etc/update.d content between controllers Story: 2010676 Task: 51299 Change-Id: I0a33c8a97cb27a3bb9bee6acfbc6f72d71292580 Signed-off-by: Lindley Vieira --- rsync-config/source-debian/rsyncd.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rsync-config/source-debian/rsyncd.conf b/rsync-config/source-debian/rsyncd.conf index 9e6f64b..9fbd63d 100644 --- a/rsync-config/source-debian/rsyncd.conf +++ b/rsync-config/source-debian/rsyncd.conf @@ -73,3 +73,9 @@ read only = yes comment = Luks encrypted filesystem uid = root read only = no + +[update_scripts] + path = /etc/update.d + comment = Patch activate scripts + uid = root + read only = no