blob: c39d5fe5d3535b18ae134ec86219c818c626d845 [file] [log] [blame]
Thomas Vachuska0fdf7c92016-05-05 17:01:39 -07001#!/bin/bash
2# Destroys an LXC cell with the specified name.
3
4name=$1
5
6cd $(dirname $0)
7
8./destroy-node $name-mn
9
10for n in {1..3}; do
11 ./destroy-node $name-$n
12done