Automation scripts
[o-du/l2.git] / build / scripts / start_cu_stub_logging.sh
1 ################################################################################
2 #   Copyright (c) [2017-2019] [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 log CU Stub
17 #!/bin/sh
18
19 ROOT_DIR=$PWD
20 d=`date +%Y_%m_%d_%I_%M_%S`
21
22 touch  $ROOT_DIR/"log_cu_stub_$d.txt"
23 chmod -c 777 $ROOT_DIR/"log_cu_stub_$d.txt"
24 touch /etc/rsyslog.d/rsyslog_loginauth.conf
25 cp /dev/null /etc/rsyslog.d/rsyslog_loginauth.conf
26 echo "if \$programname == \"CU_STUB\" then" >> \
27 /etc/rsyslog.d/rsyslog_loginauth.conf
28 echo "$ROOT_DIR/../cu_stub/log_cu_stub_$d.txt" >> \
29 /etc/rsyslog.d/rsyslog_loginauth.conf
30 systemctl restart rsyslog
31
32
33 #**********************************************************************
34 #         End of file
35 #**********************************************************************