Index: trunk/Nebulous-Server/Build.PL
===================================================================
--- trunk/Nebulous-Server/Build.PL	(revision 4878)
+++ trunk/Nebulous-Server/Build.PL	(revision 4879)
@@ -95,3 +95,4 @@
         'Apache::DBI'           => '0.94',
     },
+    script_files        => 'bin/neb-initdb',
 )->create_build_script;
Index: trunk/Nebulous-Server/scripts/bench_test.pl
===================================================================
--- trunk/Nebulous-Server/scripts/bench_test.pl	(revision 4878)
+++ trunk/Nebulous-Server/scripts/bench_test.pl	(revision 4879)
@@ -14,11 +14,12 @@
 
 my $key = shift || 'foobar';
+            my $fh = $neb->create( $key );
+            close $fh;
 
-timethese( -10,
+timethese( -3,
     {
         'create/delete' => sub {
-            my $fh = $neb->create( $key );
-            close $fh;
-            $neb->delete( $key );
+#            $neb->delete( $key );
+            $neb->stat( $key );
         },
     }
Index: trunk/Nebulous-Server/scripts/stest.pl
===================================================================
--- trunk/Nebulous-Server/scripts/stest.pl	(revision 4878)
+++ trunk/Nebulous-Server/scripts/stest.pl	(revision 4879)
@@ -18,5 +18,5 @@
 
 $neb->create( $fname, 1 );
-$neb->unlock( $fname, 'write' );
+#$neb->unlock( $fname, 'write' );
 $neb->delete( $fname );
 
