#!/bin/sh
#
# mount UPnP VFS
#
# runlevels: geexbox, debug, configure

# get options
test -f /etc/network || exit 1
. /etc/network

if test "$UPNP" = "yes"; then
  echo "### Mounting UPnP VFS ###"
  automount_upnp &
fi

exit 0
