blob: 0af757e0b5db217e504d624c6e05a1ba37ef5ea0 [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
Thomas Vachuskae91541f2016-05-05 23:15:41 -07008./destroy-node $name-n
Thomas Vachuska0fdf7c92016-05-05 17:01:39 -07009
10for n in {1..3}; do
11 ./destroy-node $name-$n
12done