aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/heat/onap-rke/cleanup.sh
blob: 24f263be6a9afec19f25dcc4fdbf5612a02eb09a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

IFS='
'

if [ -z $1 ]; then
	echo "ONAP component name missing"
	echo "Usage: ./cleanup.sh onap_component_name"
	exit 1
fi

( cd scripts; ./cleanup.sh $1 onap dev )