Subversion Repositories havirt

Rev

Rev 26 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26 Rev 39
Line 53... Line 53...
53
 
53
 
54
sub help {
54
sub help {
55
   my @return;
55
   my @return;
56
   push @return, 'cluster status';
56
   push @return, 'cluster status';
57
   push @return, "\t[--format|-f screen|tsv] - displays some stats on cluster resources used";
57
   push @return, "\t[--format|-f screen|tsv] - displays some stats on cluster resources used";
-
 
58
   push @return, 'cluster balance';
-
 
59
   push @return, "\tBalances resources by moving domains between nodes";
58
   push @return, 'cluster iscsi';
60
   push @return, 'cluster iscsi';
59
   push @return, "\tdisplays list of all iSCSI targets 'known' by system";
61
   push @return, "\tdisplays list of all iSCSI targets 'known' by system";
60
   push @return, 'cluster iscsi add ip-or-dns-name';
62
   push @return, 'cluster iscsi add ip-or-dns-name';
61
   push @return, "\tAdds iscsi target to system";
63
   push @return, "\tAdds iscsi target to system";
62
   push @return, 'cluster iscsi delete  ip-or-dns-name';
64
   push @return, 'cluster iscsi delete  ip-or-dns-name';
Line 205... Line 207...
205
      }
207
      }
206
   } else {
208
   } else {
207
      push @return, "No new entries";
209
      push @return, "No new entries";
208
   }
210
   }
209
   return join( "\n", @return ) . "\n";
211
   return join( "\n", @return ) . "\n";
210
} # updateISCITargets
-
 
211
 
212
} # updateISCITargets
-
 
213
 
-
 
214
sub balance {
-
 
215
   return "This function not implemented yet\n";
-
 
216
}
-
 
217