thekube/del_project.sh
2023-12-20 20:41:56 +01:00

12 lines
215 B
Bash
Executable File

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