[snmp]: Save S/N in state DB prior to starting service (#1246)

snmp.service needs to read chassis serial number for one of its mibs.
We save this value in state DB so that it is accessible from container.

Signed-off-by: marian-pritsak <marianp@mellanox.com>
This commit is contained in:
Marian Pritsak 2017-12-20 02:02:26 +02:00 committed by lguohan
parent 6e05b67070
commit ab2d066a4d
2 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,9 @@ function postStartAction()
sleep 1
done
{%- endif %}
{%- if docker_container_name == "snmp" %}
docker exec -i database redis-cli -n 6 HSET 'DEVICE_METADATA|localhost' chassis_serial_number $(decode-syseeprom -s)
{%- endif %}
}
# Obtain our platform as we will mount directories with these names in each docker

View File

@ -4,7 +4,6 @@ Requires=database.service swss.service
After=database.service swss.service
[Service]
User={{ sonicadmin_user }}
ExecStartPre=/usr/bin/{{docker_container_name}}.sh start
ExecStart=/usr/bin/{{docker_container_name}}.sh attach
ExecStop=/usr/bin/{{docker_container_name}}.sh stop