Bin Yang 3b74d6b556 Update License Statement for notificationclient
Story: 2008529
Task: 41923

Signed-off-by: Bin Yang <bin.yang@windriver.com>
Change-Id: If2237b94fada714e87f5e58e4563cbcea8fe5aff
2021-02-24 10:00:44 +08:00

35 lines
846 B
Python

#coding:utf8
#
# Copyright (c) 2021 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
import os
import sys
import re
def update_host(hostname, ip):
hostsfile="/etc/hosts"
Lines=[]
replaced = False
with open(hostsfile) as fd:
for line in fd.readlines():
if line.strip() == '' or line.startswith('#'):
Lines.append(line)
else:
h_name = line.strip().split()[1]
if h_name == hostname:
lin = "{0} {1}\n".format(ip, hostname)
Lines.append(lin)
replaced = True
else:
Lines.append(line)
if replaced == False:
Lines.append("\n{0} {1}\n".format(ip, hostname))
with open(hostsfile, 'w') as fc:
fc.writelines(Lines)