Index: trunk/Nebulous/bin/neb-touch
===================================================================
--- trunk/Nebulous/bin/neb-touch	(revision 13074)
+++ trunk/Nebulous/bin/neb-touch	(revision 16179)
@@ -1,7 +1,7 @@
 #!/usr/bin/env perl
 
-# Copyright (C) 2007  Joshua Hoblitt
+# Copyright (C) 2007-2008  Joshua Hoblitt
 #
-# $Id: neb-touch,v 1.2 2007-04-28 01:19:59 jhoblitt Exp $
+# $Id: neb-touch,v 1.3 2008-01-22 21:14:55 jhoblitt Exp $
 
 use strict;
@@ -16,10 +16,11 @@
 use Pod::Usage qw( pod2usage );
 
-my ($server);
+my ($server, $volume);
 
 $server = $ENV{'NEB_SERVER'} unless $server;
 
 GetOptions(
-    'server|s=s'     => \$server,
+    'server|s=s'    => \$server,
+    'volume=s'      => \$volume,
 ) || pod2usage( 2 );
 
@@ -40,5 +41,6 @@
 
 unless ($neb->find($file)) {
-    $neb->create($file) or die "failed to create Nebulous key $file";
+    $neb->create($file, 0, $volume)
+        or die "failed to create Nebulous key $file";
 }
 
@@ -53,9 +55,11 @@
 =head1 SYNOPSIS
 
-    neb-touch [--server <URL>] <key>
+    neb-touch [--server <URL>] [--volume <volume name>] <key>
 
 =head1 DESCRIPTION
 
-This program creates an empty file with the Nebulous key of C<<key>>.  At some point in the future it almost be used to adjust the timestamp of storage instances assosiated with a Nebulous key similar to C<touch(1)>.
+This program creates an empty file with the Nebulous key of C<<key>>.  At some
+point in the future it will be able to adjust the timestamp of storage
+instances assosiated with a Nebulous key similar to C<touch(1)>.
 
 =head1 OPTIONS
@@ -68,4 +72,10 @@
 
 Optional if the appropriate environment variable is set.
+
+=item * --volume|-n <volume name>
+
+Symbolic name of the volume to create the first instance on.
+
+Optional.
 
 =back
@@ -99,5 +109,5 @@
 =head1 COPYRIGHT
 
-Copyright (C) 2007  Joshua Hoblitt.  All rights reserved.
+Copyright (C) 2007-2008  Joshua Hoblitt.  All rights reserved.
 
 This program is free software; you can redistribute it and/or modify it under
