Generalize neutron-db-manage and quantum-db-manage executable names as they may come from /usr/local/bin when deploying from source.

This commit is contained in:
Corey Bryant 2015-04-22 20:06:21 +00:00
parent ad1e1ca488
commit cd8d91ca13
1 changed files with 2 additions and 2 deletions

View File

@ -508,8 +508,8 @@ def disable_policy_rcd():
os.unlink('/usr/sbin/policy-rc.d')
QUANTUM_DB_MANAGE = "/usr/bin/quantum-db-manage"
NEUTRON_DB_MANAGE = "/usr/bin/neutron-db-manage"
QUANTUM_DB_MANAGE = "quantum-db-manage"
NEUTRON_DB_MANAGE = "neutron-db-manage"
def reset_os_release():