First commit of something

Something is a new tool to delete something else
Also added to delete something completely different

Change-Id: Ic1d1c452034c9918487da04d5fe2f0227091b9d7
Signed-off-by: Balazs Szollosi <balazs.szollosi@nokia.com>
This commit is contained in:
Balazs Szollosi 2018-07-10 11:54:33 +03:00
parent 324c5c74f6
commit 323e426977
1 changed files with 13 additions and 0 deletions

13
something.sh Normal file
View File

@ -0,0 +1,13 @@
#! /bin/bash
nodes=$(openstack baremetal node list -c UUID -f value)
for node in $nodes
do
openstack baremetal node delete ${node}
done
networks=$(openstack network list -c ID -f value)
for network in $networks
do
openstack network delete ${network}
done