This file is indexed.

/usr/share/ldm/rc.d/X10-delayed-mounter is in ltspfsd 1.4-2.

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
15
16
17
18
19
20
#
# sourced with .
#
# Script to automatically add what's in the ltspfs_fstab on login.
#

if [ -f /var/run/ltspfs_fstab ]; then
    while read DEV DIR TYPE OPTIONS DUMP PASS; do
        LTSPFS_MOUNTS="$LTSPFS_MOUNTS $DIR"
    done < /var/run/ltspfs_fstab

    for DIR in $LTSPFS_MOUNTS ; do
        ssh -X -S ${LDM_SOCKET} ${LDM_SERVER} "/usr/sbin/ltspfsmounter ${DIR} add"

        if [ -x /usr/sbin/ltspfsmounter ]; then
            unset SSH_CONNECTION
            su ${LDM_USERNAME} -c "LTSPFS_NOAUTH=True /usr/sbin/ltspfsmounter ${DIR} add" 
        fi
    done
fi