12 lines
215 B
Bash
Executable File
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
|