Renamed sonic-bgpcfgd/bgpmon_proj directory to sonic-bfgcfgd/bgpmon so it is in sync with master branch naming change. Also made bgpmon auto restart enabled (#5453)

synch up the changes from master branch where bgpmon_proj is renamed to bgpmon.
Added bgpmon to be autorestart enabled by supervisord
This commit is contained in:
gechiang 2020-09-24 08:57:55 -07:00 committed by GitHub
parent 37c8511977
commit 6ae77f87cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ stderr_logfile=syslog
command=/usr/local/bin/bgpmon
priority=6
autostart=false
autorestart=false
autorestart=true
startsecs=0
stdout_logfile=syslog
stderr_logfile=syslog

View File

@ -12,7 +12,7 @@ setuptools.setup(name='sonic-bgpcfgd',
scripts=['bgpcfgd'],
entry_points={
'console_scripts': [
'bgpmon = bgpmon_proj.bgpmon:main',
'bgpmon = bgpmon.bgpmon:main',
]
},
install_requires=['jinja2>=2.10', 'netaddr', 'pyyaml'],