Index: trunk/Nebulous-Server/bin/neb-host
===================================================================
--- trunk/Nebulous-Server/bin/neb-host	(revision 32860)
+++ trunk/Nebulous-Server/bin/neb-host	(revision 32919)
@@ -18,5 +18,5 @@
 my ($host, $state, $note,
     $db, $dbhost, $dbpass, $dbuser,
-    $allocate, $available, $debug);
+    $allocate, $available, $debug,$volume);
 
 # $db     = $ENV{'NEB_DB'} unless $db;
@@ -56,5 +56,5 @@
     'dbuser=s'       => \$dbuser,
     'dbpass=s'       => \$dbpass,
-
+    'volume'         => \$volume,
     
     ) || pod2usage( 2 );
@@ -98,5 +98,10 @@
     
     my %constraint;
-    $constraint{'v.host'} = $host;
+    if (defined($volume)) {
+	$constraint{'v.name'} = $host;
+    }
+    else {
+	$constraint{'v.host'} = $host;
+    }
     my %set;
     $set{'v.allocate'} = $allocate if defined $allocate;
