/sbin/fsck.nfs is in initscripts 2.88dsf-59.3ubuntu2.
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 12 13 14 15 16 17 18 19 20 21 | #! /bin/sh
#
# fsck.nfs
#
# Dummy fsck.nfs file that always returns success. We
# need this for when the root file system is on NFS:
# there is no way to find out if root is NFS mounted
# and we really want to do a "fsck -a /".
#
while :
do
case "$1" in
-*) shift ;;
*) break ;;
esac
done
echo "$1: NFS file system."
exit 0
|