PNF Registration to be sent after odu stack is up
[o-du/l2.git] / build / scripts / troubleshoot_netconf.sh
1 ################################################################################
2 #   Copyright (c) [2020-2021] [HCL Technologies Ltd.]                          #
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 clean-up sysrepo databas
17 #!/bin/bash
18
19 CURRENT_DIR=$PWD
20 ROOT_DIR=$CURRENT_DIR/../..
21
22 if [ "$1" = "cleanup" ]; then
23    kill -9 `pidof netopeer2-server`
24    cd $ROOT_DIR/build/netconf/sysrepo/build/
25    make sr_clean
26    cd $ROOT_DIR/build/netconf/Netopeer2/build/
27    make install
28    cd $CURRENT_DIR
29 fi
30
31 ################################################################################
32 #                              End of file                                     #
33 ################################################################################