We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b2d0b2 + f106240 commit cda2ae0Copy full SHA for cda2ae0
stack.sh
@@ -587,7 +587,16 @@ function get_packages() {
587
if [[ -e ${package_dir}/${service} ]]; then
588
file_to_parse="${file_to_parse} $service"
589
fi
590
- if [[ $service == n-* ]]; then
+ # NOTE(sdague) n-api needs glance for now because that's where
591
+ # glance client is
592
+ if [[ $service == n-api ]]; then
593
+ if [[ ! $file_to_parse =~ nova ]]; then
594
+ file_to_parse="${file_to_parse} nova"
595
+ fi
596
+ if [[ ! $file_to_parse =~ glance ]]; then
597
+ file_to_parse="${file_to_parse} glance"
598
599
+ elif [[ $service == n-* ]]; then
600
if [[ ! $file_to_parse =~ nova ]]; then
601
file_to_parse="${file_to_parse} nova"
602
0 commit comments