Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > media > main-testing > by-pkgid > 7564505c8b39bb85c995aba611b95a8a > files > 20

xen-3.3.0-7.2mdv2009.0.i586.rpm

#!/bin/bash

# Usage: block-nbd [bind server ctl_port |unbind node]
#
# The node argument to unbind is the name of the device node we are to
# unbind.
#
# This assumes you're running a correctly configured server at the other end!

dir=$(dirname "$0")
. "$dir/block-common.sh"

case "$command" in
  add)
    for dev in /dev/nbd*; do
      if nbd-client $2 $3 $dev; then
        write_dev $dev
        exit 0
      fi
    done
    exit 1
    ;;
  remove)
    nbd-client -d $2
    exit 0
    ;;
esac