cleanup and checkin the example scripts
diff --git a/xos/cord/rest_examples/add_volt_tenant.sh b/xos/cord/rest_examples/add_volt_tenant.sh
index a20e214..5dd3dd4 100755
--- a/xos/cord/rest_examples/add_volt_tenant.sh
+++ b/xos/cord/rest_examples/add_volt_tenant.sh
@@ -1,8 +1,10 @@
 #!/bin/bash
 
-HOST=198.0.0.44:8000
-AUTH=scott@onlab.us:letmein
-SERVICE_SPECIFIC_ID=5678
-VLAN_ID=1234
+source ./config.sh
+
+SERVICE_SPECIFIC_ID=1238
+VLAN_ID=1238
+
+echo curl "-H \"Accept: application/json; indent=4\" -H \"Content-Type: application/json\" -u $AUTH -X POST -d \"{\\\"service_specific_id\\\": \\\"$SERVICE_SPECIFIC_ID\\\", \\\"vlan_id\\\": \\\"$VLAN_ID\\\"}\" $HOST/xoslib/volttenant/"
 
 curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH -X POST -d "{\"service_specific_id\": \"$SERVICE_SPECIFIC_ID\", \"vlan_id\": \"$VLAN_ID\"}" $HOST/xoslib/volttenant/  
diff --git a/xos/cord/rest_examples/config.sh b/xos/cord/rest_examples/config.sh
new file mode 100644
index 0000000..7b8c8e1
--- /dev/null
+++ b/xos/cord/rest_examples/config.sh
@@ -0,0 +1,5 @@
+#HOST=198.0.0.44:8000
+HOST=10.254.1.22:8000
+
+#AUTH=scott@onlab.us:letmein
+AUTH=padmin@vicci.org:letmein
diff --git a/xos/cord/rest_examples/delete_volt_tenant.sh b/xos/cord/rest_examples/delete_volt_tenant.sh
index 17ea96f..2557e72 100755
--- a/xos/cord/rest_examples/delete_volt_tenant.sh
+++ b/xos/cord/rest_examples/delete_volt_tenant.sh
@@ -1,7 +1,7 @@
 #!/bin/bash
 
-HOST=198.0.0.44:8000
-AUTH=scott@onlab.us:letmein
-ID=974
+source ./config.sh
 
-curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH -X DELETE $HOST/xoslib/volttenant/$ID/  
\ No newline at end of file
+ID=89
+
+curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH -X DELETE $HOST/xoslib/volttenant/$ID/  
diff --git a/xos/cord/rest_examples/list_cord_subscribers.sh b/xos/cord/rest_examples/list_cord_subscribers.sh
index 7fe6b5c..8deafa6 100755
--- a/xos/cord/rest_examples/list_cord_subscribers.sh
+++ b/xos/cord/rest_examples/list_cord_subscribers.sh
@@ -1,7 +1,5 @@
 #!/bin/bash
 
-HOST=198.0.0.44:8000
-AUTH=scott@onlab.us:letmein
-VLAN_ID=1234
+source ./config.sh
 
-curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH $HOST/xoslib/cordsubscriber/  
\ No newline at end of file
+curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH $HOST/xoslib/cordsubscriber/  
diff --git a/xos/cord/rest_examples/list_volt_tenants.sh b/xos/cord/rest_examples/list_volt_tenants.sh
index 39bff62..f1348dd 100755
--- a/xos/cord/rest_examples/list_volt_tenants.sh
+++ b/xos/cord/rest_examples/list_volt_tenants.sh
@@ -1,7 +1,5 @@
 #!/bin/bash
 
-HOST=198.0.0.44:8000
-AUTH=scott@onlab.us:letmein
-VLAN_ID=1234
+source ./config.sh
 
-curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH $HOST/xoslib/volttenant/  
\ No newline at end of file
+curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH $HOST/xoslib/volttenant/