name alignment 01/9501/3
authorMichael Lando <ml636r@att.com>
Wed, 30 Aug 2017 17:46:11 +0000 (20:46 +0300)
committerVictor Morales <victor.morales@intel.com>
Wed, 30 Aug 2017 19:06:54 +0000 (14:06 -0500)
as part of the name alignment i want to change all occurrences of asdc to sdc.

Change-Id: I2eb9ff087d3cfd61c0c1347d085dd02da64c2d89
Issue-Id: INT-100
Signed-off-by: Michael Lando <ml636r@att.com>
Signed-off-by: Victor Morales <victor.morales@intel.com>
boot/sdc_ext_volume_partitions.txt [moved from boot/asdc_ext_volume_partitions.txt with 100% similarity]
boot/sdc_install.sh [moved from boot/asdc_install.sh with 88% similarity]
boot/sdc_serv.sh [moved from boot/asdc_serv.sh with 98% similarity]
boot/sdc_vm_init.sh [moved from boot/asdc_vm_init.sh with 100% similarity]
heat/ONAP/onap_openstack.yaml
heat/ONAP/onap_openstack_float.yaml
heat/ONAP/onap_openstack_nofloat.yaml
heat/ONAP/onap_rackspace.yaml
vnfs/VES5.0/evel/evel-test-collector/docs/att_interface_definition/event_format_updated.json

similarity index 88%
rename from boot/asdc_install.sh
rename to boot/sdc_install.sh
index 0400194..b0b6bf1 100644 (file)
@@ -53,12 +53,12 @@ apt-get update
 apt-get install -y apt-transport-https ca-certificates wget openjdk-8-jdk git ntp ntpdate make
 
 # Download scripts from Nexus
-curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/asdc_vm_init.sh -o /opt/asdc_vm_init.sh
-curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/asdc_serv.sh -o /opt/asdc_serv.sh
-chmod +x /opt/asdc_vm_init.sh
-chmod +x /opt/asdc_serv.sh
-mv /opt/asdc_serv.sh /etc/init.d
-update-rc.d asdc_serv.sh defaults
+curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/sdc_vm_init.sh -o /opt/sdc_vm_init.sh
+curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/sdc_serv.sh -o /opt/sdc_serv.sh
+chmod +x /opt/sdc_vm_init.sh
+chmod +x /opt/sdc_serv.sh
+mv /opt/sdc_serv.sh /etc/init.d
+update-rc.d sdc_serv.sh defaults
 
 # Download and install docker-engine and docker-compose
 echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/sources.list.d/docker.list
@@ -71,17 +71,17 @@ curl -L https://github.com/docker/compose/releases/download/1.9.0/docker-compose
 chmod +x /opt/docker/docker-compose
 
 # Create partition and mount the external volume
-curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/asdc_ext_volume_partitions.txt -o /opt/asdc_ext_volume_partitions.txt
+curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/sdc_ext_volume_partitions.txt -o /opt/sdc_ext_volume_partitions.txt
 
 if [[ $CLOUD_ENV == "rackspace" ]]
 then
        DISK="xvdb"
 else
        DISK=$(ls /dev |grep -e '^.*db$')
-       sed -i "s/xvdb/$DISK/g" /opt/asdc_ext_volume_partitions.txt
+       sed -i "s/xvdb/$DISK/g" /opt/sdc_ext_volume_partitions.txt
 fi
 
-sfdisk /dev/$DISK < /opt/asdc_ext_volume_partitions.txt
+sfdisk /dev/$DISK < /opt/sdc_ext_volume_partitions.txt
 mkfs -t ext4 /dev/$DISK"1"
 mkdir -p /data
 mount /dev/$DISK"1" /data
@@ -139,4 +139,4 @@ then
 fi
 
 # Run docker containers. For openstack Ubuntu 16.04 images this will run as a service after the VM has restarted
-./asdc_vm_init.sh
+./sdc_vm_init.sh
similarity index 98%
rename from boot/asdc_serv.sh
rename to boot/sdc_serv.sh
index 7d2539e..b48c848 100644 (file)
@@ -10,7 +10,7 @@
 ### END INIT INFO
 
 dir="/opt"
-cmd="./asdc_vm_init.sh"
+cmd="./sdc_vm_init.sh"
 user="root"
 
 name=`basename $0`
similarity index 100%
rename from boot/asdc_vm_init.sh
rename to boot/sdc_vm_init.sh
index a99054c..af8ef76 100644 (file)
@@ -1075,10 +1075,10 @@ resources:
             echo "__sdc_repo__" > /opt/config/remote_repo.txt
 
             # Download and run install script
-            curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/asdc_install.sh -o /opt/asdc_install.sh
+            curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/sdc_install.sh -o /opt/sdc_install.sh
             cd /opt
-            chmod +x asdc_install.sh
-            ./asdc_install.sh
+            chmod +x sdc_install.sh
+            ./sdc_install.sh
 
 
   # PORTAL instantiation
@@ -1497,4 +1497,4 @@ resources:
             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/clamp_install.sh -o /opt/clamp_install.sh
             cd /opt
             chmod +x clamp_install.sh
-            ./clamp_install.sh
\ No newline at end of file
+            ./clamp_install.sh
index 74e24e4..ab9b560 100644 (file)
@@ -1153,10 +1153,10 @@ resources:
             echo "__sdc_repo__" > /opt/config/remote_repo.txt
 
             # Download and run install script
-            curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/asdc_install.sh -o /opt/asdc_install.sh
+            curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/sdc_install.sh -o /opt/sdc_install.sh
             cd /opt
-            chmod +x asdc_install.sh
-            ./asdc_install.sh
+            chmod +x sdc_install.sh
+            ./sdc_install.sh
 
 
   # PORTAL instantiation
@@ -1580,4 +1580,4 @@ resources:
             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/clamp_install.sh -o /opt/clamp_install.sh
             cd /opt
             chmod +x clamp_install.sh
-            ./clamp_install.sh
\ No newline at end of file
+            ./clamp_install.sh
index 05ba223..3dbea8e 100644 (file)
@@ -1024,10 +1024,10 @@ resources:
             echo "__sdc_repo__" > /opt/config/remote_repo.txt
 
             # Download and run install script
-            curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/asdc_install.sh -o /opt/asdc_install.sh
+            curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/sdc_install.sh -o /opt/sdc_install.sh
             cd /opt
-            chmod +x asdc_install.sh
-            ./asdc_install.sh
+            chmod +x sdc_install.sh
+            ./sdc_install.sh
 
 
   # PORTAL instantiation
@@ -1423,4 +1423,4 @@ resources:
             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/clamp_install.sh -o /opt/clamp_install.sh
             cd /opt
             chmod +x clamp_install.sh
-            ./clamp_install.sh
\ No newline at end of file
+            ./clamp_install.sh
index 260632c..09c290e 100644 (file)
@@ -829,10 +829,10 @@ resources:
             echo "__sdc_repo__" > /opt/config/remote_repo.txt
 
             # Download and run install script
-            curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/asdc_install.sh -o /opt/asdc_install.sh
+            curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/sdc_install.sh -o /opt/sdc_install.sh
             cd /opt
-            chmod +x asdc_install.sh
-            ./asdc_install.sh
+            chmod +x sdc_install.sh
+            ./sdc_install.sh
 
 
   # PORTAL instantiation
@@ -1196,4 +1196,4 @@ resources:
             curl -k __nexus_repo__/org.onap.demo/boot/__artifacts_version__/clamp_install.sh -o /opt/clamp_install.sh
             cd /opt
             chmod +x clamp_install.sh
-            ./clamp_install.sh
\ No newline at end of file
+            ./clamp_install.sh
index 82339b0..160add5 100644 (file)
                                        "type": "string"\r
                                },\r
                                "vfModuleName": {\r
-                                       "description": "ASDC vfModuleName for the vfModule generating the event",\r
+                                       "description": "SDC vfModuleName for the vfModule generating the event",\r
                                        "type": "string"\r
                                },\r
                                "vnfName": {\r
-                                       "description": "ASDC modelName for the VNF generating the event",\r
+                                       "description": "SDC modelName for the VNF generating the event",\r
                                        "type": "string"\r
                                }\r
                        },\r