/usr/share/ldm/rc.d/X98-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 | #
# sourced with .
#
# Script to cleanup local ltspfsmounter
#
if [ -f /var/run/ltspfs_fstab ] && [ -x /usr/sbin/ltspfsmounter ]; then
unset SSH_CONNECTION
su ${LDM_USERNAME} -c "LTSPFS_NOAUTH=True /usr/sbin/ltspfsmounter all cleanup"
fi
|