Adding ability to balance load between different cell servers.

Adding ability to specify structure/size of the cell.

Change-Id: I5e87c99fe8812ba0a974d7815ab8ddc64193a608
diff --git a/utils/warden/bin/destroy-cell b/utils/warden/bin/destroy-cell
index 0af757e..feb9973 100755
--- a/utils/warden/bin/destroy-cell
+++ b/utils/warden/bin/destroy-cell
@@ -2,11 +2,19 @@
 # Destroys an LXC cell with the specified name.
 
 name=$1
+spec=$2
+
+nodes=${spec%+*}
+mininet=${spec#*+}
 
 cd $(dirname $0)
 
-./destroy-node $name-n
+if [ $mininet -ge 1 ]; then
+    ./destroy-node $name-n
+fi
 
-for n in {1..3}; do
+let n=1
+while [ $n -le $nodes ]; do
     ./destroy-node $name-$n
+    let n=n+1
 done