0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.144.123.61


Current Path : /proc/thread-self/root/snap/core/17200/sbin/
Upload File :
Current File : //proc/thread-self/root/snap/core/17200/sbin/fsck.nfs

#! /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