Index: trunk/tools/czartool/Nebulous.pm
===================================================================
--- trunk/tools/czartool/Nebulous.pm	(revision 28845)
+++ trunk/tools/czartool/Nebulous.pm	(revision 28862)
@@ -93,4 +93,6 @@
     $self->{_totalHosts} = 0;
     $self->{_hostsOverNinetyEightPC} = 0;
+    my $readable;
+    my $writable;
     foreach $line (@cmdOut) {
 
@@ -113,6 +115,11 @@
             if ($4 >= 98) {$self->{_hostsOverNinetyEightPC}++;}
 
-#            print $1 . " " . $self->convertKbToTb($2+$3) . " " . $self->convertKbToTb($2) . " " . $self->convertKbToTb($3) . " $4PC \n" ; 
-            $self->{_czarDb}->updateHost($1, $self->convertKbToTb($2+$3), $self->convertKbToTb($3), $self->convertKbToTb($2));
+            $self->getReadableWritableStatus($1, \$readable, \$writable);
+
+            $self->{_czarDb}->updateHost($1, 
+                    $self->convertKbToTb($2+$3), 
+                    $self->convertKbToTb($3), 
+                    $self->convertKbToTb($2), 
+                    $readable, $writable);
         }
     }
@@ -123,5 +130,32 @@
             $self->{_totalUsed}, 
             $self->{_hostsOverNinetyEightPC});
+}
 
+###########################################################################
+#
+# Runs neb-host and readable/writable status for this host 
+#
+###########################################################################
+sub getReadableWritableStatus {
+    my ($self, $host, $readable, $writable) = @_;
+
+    ${$readable} = 0;
+    ${$writable} = 0;
+
+    my @cmdOut = `neb-host`;
+    my $line;
+    foreach $line (@cmdOut) {
+
+        chomp($line);
+        if ($line =~ m/$host\s+[0-9.A-Za-z]+\s+([01]+)\s+([01]+)\s+([01]+)\s+.*/i) {
+
+            # if mounted...
+            if ($1) {
+
+                ${$readable} = $3;
+                ${$writable} = $2;
+            }
+        }
+    }
 }
 1;
