#!/bin/sh
#
# mount 9p.2000u resource sharing
#
# runlevels: geexbox, debug, configure

if test -f /etc/9p -a -f /etc/network; then
  echo "### Mounting 9P shares ###"
  automount_9p &
fi

exit 0
