Install neutron rpms/debs when lib/neutron is used
lib/neutron service prefixes are neutron-* not q-*. We should install those packages either way. The patch moves files/*/neutron into files/*/neutron-common so that we can correctly match */neutron against service specific dependency files (f.e. */neutron-agent) and load the common packages if any neutron-* service is present. Change-Id: I57b36f2ed3f33737223a35d9ed734bb414f31e0b
This commit is contained in:
parent
71e07c738d
commit
387aadd14e
@ -1211,9 +1211,9 @@ function get_packages {
|
||||
if [[ ! $file_to_parse =~ $package_dir/keystone ]]; then
|
||||
file_to_parse="${file_to_parse} ${package_dir}/keystone"
|
||||
fi
|
||||
elif [[ $service == q-* ]]; then
|
||||
if [[ ! $file_to_parse =~ $package_dir/neutron ]]; then
|
||||
file_to_parse="${file_to_parse} ${package_dir}/neutron"
|
||||
elif [[ $service == q-* || $service == neutron-* ]]; then
|
||||
if [[ ! $file_to_parse =~ $package_dir/neutron-common ]]; then
|
||||
file_to_parse="${file_to_parse} ${package_dir}/neutron-common"
|
||||
fi
|
||||
elif [[ $service == ir-* ]]; then
|
||||
if [[ ! $file_to_parse =~ $package_dir/ironic ]]; then
|
||||
|
Loading…
Reference in New Issue
Block a user