Skip to content

Commit

Permalink
[snmp] Configure snmp docker hostname from config DB (#2773)
Browse files Browse the repository at this point in the history
* [snmp] Configure snmp docker hostname from config DB
* Fixed reviewer comments
  • Loading branch information
vsenchyshyn authored and yxieca committed Mar 2, 2020
1 parent 560aceb commit f2e60f8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions dockers/docker-snmp-sv2/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ sonic-cfggen -d -y /etc/sonic/snmp.yml -t /usr/share/sonic/templates/snmpd.conf.
mkdir -p /var/sonic
echo "# Config files managed by sonic-config-engine" > /var/sonic/config_status

CURRENT_HOSTNAME=`hostname`
HOSTNAME=`sonic-cfggen -d -v DEVICE_METADATA[\'localhost\'][\'hostname\']`

if [ "$?" == "0" ] && [ "$HOSTNAME" != "" ]; then
echo $HOSTNAME > /etc/hostname
hostname -F /etc/hostname

sed -i "/\s$CURRENT_HOSTNAME$/d" /etc/hosts
echo "127.0.0.1 $HOSTNAME" >> /etc/hosts
fi

rm -f /var/run/rsyslogd.pid

supervisorctl start rsyslogd
Expand Down

0 comments on commit f2e60f8

Please sign in to comment.