This file is indexed.

/usr/share/simple-cdd/tools/mirror/rsync is in simple-cdd 0.6.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
mkdir -p $MIRROR

# download files
for file in $mirror_files ; do
    case $file in
        */) mkdir -p $MIRROR/$file
    esac
    rsync -avP $rsync_debian_mirror/$file $MIRROR/$file
    sleep 1
done