Add secret-management in Charmed OSM
[osm/devops.git] / jenkins / host / clean_container
1 #!/bin/bash
2 #   Copyright 2016 Telefónica Investigación y Desarrollo S.A.U.
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # clean_container is run on a host to clean an MDG container
17 #
18 # 20 Sept 2016 -- Gerardo Garcia -- Genesis
19 #
20
21 HERE=$(realpath $(dirname $0))
22 OSM_JENKINS=$(dirname $HERE)
23 . $OSM_JENKINS/common/all_funcs
24
25 [ $# -lt 1 ] && FATAL "arg is MDG name"
26
27 export OSM_MDG=$1
28 OSM_load_config
29
30 if container_exists $OSM_BUILD_CONTAINER; then
31         INFO "Container exists. Deleting ..."
32         lxc stop $OSM_BUILD_CONTAINER
33         lxc delete $OSM_BUILD_CONTAINER
34         INFO "$OSM_BUILD_CONTAINER container deleted."
35 else
36         INFO "Container does not exist. Nothing to be done."
37 fi
38
39 INFO "$OSM_MDG clean-container DONE."
40 exit 0
41