commit | 0fdf7c97679b5d5f6ac04c88e1230a6862f22638 | [log] [tgz] |
---|---|---|
author | Thomas Vachuska <tom@onlab.us> | Thu May 05 17:01:39 2016 -0700 |
committer | Thomas Vachuska <tom@onlab.us> | Thu May 05 18:19:10 2016 -0700 |
tree | a6a8b6ad141160e0c7b47923ceb6dd972f3b239e | |
parent | 92b0d2ec2aef225997af8324f977ac2b68d619ef [diff] [blame] |
Adding tools for next version of warden. Change-Id: I35b0ac57b54b0bf7b8c6b6a40e02f050b3fcc7f1
diff --git a/utils/warden/bin/destroy-cell b/utils/warden/bin/destroy-cell new file mode 100755 index 0000000..c39d5fe --- /dev/null +++ b/utils/warden/bin/destroy-cell
@@ -0,0 +1,12 @@ +#!/bin/bash +# Destroys an LXC cell with the specified name. + +name=$1 + +cd $(dirname $0) + +./destroy-node $name-mn + +for n in {1..3}; do + ./destroy-node $name-$n +done