Skip to content

Commit

Permalink
Merge "Move the health check script to /usr/bin."
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Dec 1, 2016
2 parents 99a8ec1 + 8095b03 commit dd4efda
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
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
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 dd4efda

Please sign in to comment.