This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/ALTLinux/010-ssh-keys is in ltsp-server 5.5.7-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
11
12
13
case "$MODE" in
    after-install)
	if [ -x /usr/bin/ssh-keygen ]; then
	    mkdir -p "$ROOT"/etc/openssh && chmod 751 "$ROOT"/etc/openssh
	    ssh-keygen -f "$ROOT"/etc/openssh/ssh_host_rsa_key -t rsa -C '' -N '' >&2
	    ssh-keygen -f "$ROOT"/etc/openssh/ssh_host_dsa_key -t dsa -C '' -N '' >&2
	    ssh-keygen -f "$ROOT"/etc/openssh/ssh_host_key -t rsa1 -C '' -N '' >&2
	    debug "Generated SSH host keys: RSA, DSA and RSA1"
	else
	    debug "Can't generate SSH host keys: ssh-keygen not found"
	fi
        ;;
esac