Skip to content

Commit 09407d9

Browse files
committed
Removes extraneous quotes from service names.
Fixes bug 958894. Change-Id: Id517519b027c70eff22e04b79597f6d47fcc5eed
1 parent 84a03e0 commit 09407d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stack.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1460,15 +1460,15 @@ if is_service_enabled key; then
14601460
echo "catalog.RegionOne.object_store.publicURL = http://%SERVICE_HOST%:8080/v1/AUTH_\$(tenant_id)s" >> $KEYSTONE_CATALOG
14611461
echo "catalog.RegionOne.object_store.adminURL = http://%SERVICE_HOST%:8080/" >> $KEYSTONE_CATALOG
14621462
echo "catalog.RegionOne.object_store.internalURL = http://%SERVICE_HOST%:8080/v1/AUTH_\$(tenant_id)s" >> $KEYSTONE_CATALOG
1463-
echo "catalog.RegionOne.object_store.name = 'Swift Service'" >> $KEYSTONE_CATALOG
1463+
echo "catalog.RegionOne.object_store.name = Swift Service" >> $KEYSTONE_CATALOG
14641464
fi
14651465

14661466
# Add quantum endpoints to service catalog if quantum is enabled
14671467
if is_service_enabled quantum; then
14681468
echo "catalog.RegionOne.network.publicURL = http://%SERVICE_HOST%:9696/" >> $KEYSTONE_CATALOG
14691469
echo "catalog.RegionOne.network.adminURL = http://%SERVICE_HOST%:9696/" >> $KEYSTONE_CATALOG
14701470
echo "catalog.RegionOne.network.internalURL = http://%SERVICE_HOST%:9696/" >> $KEYSTONE_CATALOG
1471-
echo "catalog.RegionOne.network.name = 'Quantum Service'" >> $KEYSTONE_CATALOG
1471+
echo "catalog.RegionOne.network.name = Quantum Service" >> $KEYSTONE_CATALOG
14721472
fi
14731473

14741474
sudo sed -e "s,%SERVICE_HOST%,$SERVICE_HOST,g" -i $KEYSTONE_CATALOG

0 commit comments

Comments
 (0)