#!/bin/sh
#
# ::copy::
# ::maintainer::

needed_iface="^eth"	# only ethXXX interfaces

echo "$IFACE" | grep -q "$needed_iface"	|| exit 0

otag="[ku]"

. /lib/lsb/init-functions

log_action_begin_msg "$otag mounting NFS filesystems ..."
/bin/mount -t nfs -a
log_end_msg 0

exit 0
