thekube/del_project.sh

15 lines
323 B
Bash
Executable File

#!/usr/bin/bash
random=$1
lxc project switch $random
container1=`lxc ls | tail -3 | head -1 | awk '{ print $2 }'`
container2=`lxc ls | tail -5 | head -1 | awk '{ print $2 }'`
lxc stop $container1
lxc stop $container2
lxc delete $container1
lxc delete $container2
lxc project delete $random
lxc network delete vn-$random