Skip to content

Commit

Permalink
Move the health check script to /usr/bin.
Browse files Browse the repository at this point in the history
Change-Id: I311be1330936e71b05a358013164d9dbf9741569
partial-bug: #1642674
  • Loading branch information
haripk committed Nov 30, 2016
1 parent 0ee6204 commit 8095b03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vnsw/agent/contrail/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ env.Alias('contrail-vrouter-agent', contrail_vrouter_agent)
env.Default(contrail_vrouter_agent)

utils_scripts = [
'contrail-vrouter-agent-health-check.py',
'agent_dissector.lua',
'mpls_dissector.lua',
'qosmap.py']
Expand All @@ -122,6 +121,7 @@ doc_files += env['AGENT_FLOW_DOC_FILES']

# Please update sandesh/common/vns.sandesh on process name change
env.Alias('install', env.Install(env['INSTALL_BIN'], contrail_vrouter_agent))
env.Alias('install', env.Install(env['INSTALL_BIN'], 'contrail-vrouter-agent-health-check.py'))
for utils in utils_scripts:
env.Alias('install', env.Install(env['INSTALL_EXAMPLE'], utils))
env.Alias('install', env.Install(env['INSTALL_CONF'],
Expand Down
2 changes: 1 addition & 1 deletion src/vnsw/agent/oper/health_check.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ SandeshTraceBufferPtr
HealthCheckTraceBuf(SandeshTraceBufferCreate("HealthCheck", 5000));

const std::string HealthCheckInstance::kHealthCheckCmd
("/usr/share/contrail-utils/contrail-vrouter-agent-health-check.py");
("/usr/bin/contrail-vrouter-agent-health-check.py");

HealthCheckService::HealthCheckService(const HealthCheckTable *table,
const boost::uuids::uuid &id) :
Expand Down

0 comments on commit 8095b03

Please sign in to comment.