#!/bin/sh
# Try to mount network filesystems.

case "$2" in
	up) mount -a -O _netdev ;;
esac
