Install/Un-install scripts for o-du/l2 repo
[it/dep.git] / o-du-high / bin / uinstall
1 ################################################################################
2 #   Copyright (c) [2020] [Radisys]                                        #
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 # This script is used to uininstall O-DU High
17 #!/bin/bash
18
19 if [[ $# -eq 0 ]] ; then
20     echo "ERROR : Missing input to the script"
21     echo "Required : ./uinstall <O-DU_High_Directory_Path_To_Delete_Code>"
22     exit 1
23 fi
24
25 CLONE_DIR=$1
26
27 echo "***** Killing O-DU High binaries *****"
28 pkill -9 odu
29 pkill -9 cu_stub
30 pkill -9 ric_stub
31
32 echo "***** Remove O-DU High Directory *****"
33 rm -r $CLONE_DIR
34
35 echo "***** Bringing Down the Interfaces *****"
36 INTERFACE=$(ip route | grep default | sed -e "s/^.*dev.//" -e "s/.proto.*//")
37 INTERFACE="$(echo -e "${INTERFACE}" | tr -d '[:space:]')"
38 ifconfig $INTERFACE:ODU down
39 ifconfig $INTERFACE:CU_STUB down
40 ifconfig $INTERFACE:RIC_STUB down
41
42 echo ""
43 echo "***** Uninstallation Complete *****"
44
45 ################################################################################
46 #                              End of file                                     #
47 ################################################################################