PNF Registration to be sent after odu stack is up
[o-du/l2.git] / build / scripts / add_netconf_user.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 will add new netconf user
17 #!/bin/bash
18
19 adduser --system netconf && \
20    echo "netconf:netconf!" | chpasswd
21
22 mkdir -p /home/netconf/.ssh && \
23    ssh-keygen -A && \
24    ssh-keygen -t dsa -P '' -f /home/netconf/.ssh/id_dsa && \
25    cat /home/netconf/.ssh/id_dsa.pub > /home/netconf/.ssh/authorized_keys
26
27 ################################################################################
28 #                              End of file                                     #
29 ################################################################################