Lindley Vieira 7705765a68 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 <lindley.vieira@windriver.com>
2024-11-11 16:39:32 -03:00

82 lines
1.8 KiB
Plaintext

# /etc/rsyncd.conf
# Configuration file for rsync daemon
# See rsync(1) and rsyncd.conf(5) man pages for help
# This file is required by rsync --daemon
pid file = /var/run/rsyncd.pid
use chroot = yes
read only = yes
# Simple example for enabling your own local rsync server
#[everything]
# path = /
# comment = Everything except /etc exposed
# exclude = /etc
[software]
path = /opt/software
comment = Unified Software Management filesystem
uid = root
read only = no
[patching]
path = /opt/patching
comment = Patching filesystem
uid = root
read only = no
[feed]
path = /var/www/pages/feed
comment = OSTree repo
uid = root
read only = no
[repo]
path = /var/www/pages/updates
comment = Unified Software Management repo
uid = root
read only = no
[platform]
path = /etc/platform
comment = Platform configuration
uid = root
read only = no
[certificate]
path = /etc/ssl/private
comment = SSL certificate
uid = root
read only = no
[instances]
path = /etc/nova/instances
comment = Nova instances data
uid = root
read only = no
[cacert]
path = /etc/ssl/certs
comment = SSL ca certificate
uid = root
read only = no
[helm_charts]
path = /var/www/pages/helm_charts
comment = Helm chart repo
uid = root
read only = no
[luksdata]
path = /var/luks/stx/luks_fs/controller/
comment = Luks encrypted filesystem
uid = root
read only = no
[update_scripts]
path = /etc/update.d
comment = Patch activate scripts
uid = root
read only = no