/usr/lib/sitesummary/collect.d/debian-edu is in sitesummary-client 0.1.28+deb9u1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh
set -e
mkdir debian-edu && cd debian-edu
for filename in config ; do
    file=/etc/debian-edu/$filename
    if [ -f $file ] ; then
	cp $file $filename
    fi
done
 |