#!/bin/sh
#
# mount nfs shares
#
# runlevels: geexbox, debug, configure

if test -f /etc/nfs -a -f /etc/network; then
  echo "### Mounting NFS shares ###"
  automount_nfs &
fi

exit 0
