Index: trunk/Nebulous/lib/Nebulous/Client.pm
===================================================================
--- trunk/Nebulous/lib/Nebulous/Client.pm	(revision 17080)
+++ trunk/Nebulous/lib/Nebulous/Client.pm	(revision 17081)
@@ -1,5 +1,5 @@
-# Copyright (c) 2004  Joshua Hoblitt
+# Copyright (c) 2004-2008  Joshua Hoblitt
 #
-# $Id: Client.pm,v 1.40 2008-03-20 23:21:58 jhoblitt Exp $
+# $Id: Client.pm,v 1.41 2008-03-21 01:53:36 jhoblitt Exp $
 
 package Nebulous::Client;
@@ -705,4 +705,27 @@
 }
 
+
+sub mounts {
+    my $self = shift;
+
+    validate_pos(@_);
+
+    $log->debug( "entered - @_" );
+
+    my $response = $self->{ 'server' }->mounts();
+    if ( $response->fault ) {
+        $log->error( $response->faultcode, " - ", $response->faultstring );
+        $log->debug( "leaving" );
+
+        return;
+    }
+
+    my $stats = $response->result;
+
+    $log->debug( "leaving" );
+
+    return $stats;
+}
+
 sub stat {
     my $self = shift;
Index: trunk/Nebulous/lib/Nebulous/Client.pod
===================================================================
--- trunk/Nebulous/lib/Nebulous/Client.pod	(revision 17080)
+++ trunk/Nebulous/lib/Nebulous/Client.pod	(revision 17081)
@@ -23,9 +23,10 @@
     my $path = $neb->find( "key" );
     my $fh = $neb->open( "key", 'read' );
-    $data->delete( "key" );
-    $data->copy( "key", "new_key", "node01" );
-    $data->move( "key", "new_key" );
-    $data->delete_instance( $uri );
+    $neb->delete( "key" );
+    $neb->copy( "key", "new_key", "node01" );
+    $neb->move( "key", "new_key" );
+    $neb->delete_instance( $uri );
     my $stats = $neb->stat( "key" );
+    my $mounts = $neb->mounts();
 
 =head1 DESCRIPTION
@@ -378,4 +379,23 @@
 Returns an arrayref of scalars.
 
+=item * mounts()
+
+Accepts no parameters and returns an AoA of:
+
+    [
+        [
+            mountpoint,
+            total,
+            used,
+            vol_id,
+            name,
+            path,
+            allocate,
+            available,
+            xattr,
+        ],
+        [ ... ],
+        ...
+    ]
 
 =back
@@ -410,5 +430,5 @@
 =head1 COPYRIGHT
 
-Copyright (C) 2004-2005  Joshua Hoblitt.  All rights reserved.
+Copyright (C) 2004-2008  Joshua Hoblitt.  All rights reserved.
 
 This program is free software; you can redistribute it and/or modify it under
