I have a few rysnc modules setup in /etc/rsyncd.conf file on a server like this:
[build]
path = /some/path
read only = no
uid = test
gid = test
comment = software Build area
[build_test]
path = /some/other/path
read only = no
uid = test1
gid = test1
comment = software Build test area
I am able to get the list of all the rsync modules setup on the server with following command:
>>> rsync server_ip::
build software Build area
build_test software Build test area
This command returns jobs' names and associated comments only. How can I get the uids and gids of the modules as well. Is there any command for that?
Update: More details can be found at: https://linuxconfig.org/how-to-setup-the-rsync-daemon-on-linux