This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/ALTLinux/100-dev is in ltsp-server 5.4.2-6+deb7u1.

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
14
case "$MODE" in
    before-install)
	mkdir -m 0755 -p "$ROOT"/dev
	[ -c "$ROOT"/dev/null ] || mknod -m 0666 "$ROOT"/dev/null c 1 3
        ;;
    after-install)
	mkdir -m 0755 -p "$ROOT"/dev
	[ -c "$ROOT"/dev/null ] || mknod -m 0666 "$ROOT"/dev/null c 1 3
	[ -c "$ROOT"/dev/console ] || mknod -m 0600 "$ROOT"/dev/console c 5 1
	[ -c "$ROOT"/dev/urandom ] || mknod -m 0666 "$ROOT"/dev/urandom c 1 9
	;;
    finalization)
	;;
esac