Browse code

remove hard tabs from keystone_data.sh

hard tabs somehow snuck into keystone_data.sh, noticed
in an unrelated review. Remove for consistency.

Change-Id: I04f3b4597fd3629c7f123588c512832a67228597

Sean Dague authored on 2012/11/30 04:51:34
Showing 1 changed files
... ...
@@ -92,16 +92,16 @@ keystone user-role-add --user_id $DEMO_USER --role_id $MEMBER_ROLE --tenant_id $
92 92
 
93 93
 # Keystone
94 94
 if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
95
-	KEYSTONE_SERVICE=$(get_id keystone service-create \
96
-		--name=keystone \
97
-		--type=identity \
98
-		--description="Keystone Identity Service")
99
-	keystone endpoint-create \
100
-	    --region RegionOne \
101
-		--service_id $KEYSTONE_SERVICE \
102
-		--publicurl "http://$SERVICE_HOST:\$(public_port)s/v2.0" \
103
-		--adminurl "http://$SERVICE_HOST:\$(admin_port)s/v2.0" \
104
-		--internalurl "http://$SERVICE_HOST:\$(public_port)s/v2.0"
95
+    KEYSTONE_SERVICE=$(get_id keystone service-create \
96
+        --name=keystone \
97
+        --type=identity \
98
+        --description="Keystone Identity Service")
99
+    keystone endpoint-create \
100
+        --region RegionOne \
101
+        --service_id $KEYSTONE_SERVICE \
102
+        --publicurl "http://$SERVICE_HOST:\$(public_port)s/v2.0" \
103
+        --adminurl "http://$SERVICE_HOST:\$(admin_port)s/v2.0" \
104
+        --internalurl "http://$SERVICE_HOST:\$(public_port)s/v2.0"
105 105
 fi
106 106
 
107 107
 # Nova