Adjusting for the repo name change
diff --git a/Vagrantfile b/Vagrantfile
index d46ec6b..8c61db6 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -4,9 +4,9 @@
 Vagrant.configure(2) do |config|
 
   if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil
-    config.vm.synced_folder ".", "/opencord", mount_options: ["dmode=700,fmode=600"]
+    config.vm.synced_folder ".", "/cord", mount_options: ["dmode=700,fmode=600"]
   else
-    config.vm.synced_folder ".", "/opencord"
+    config.vm.synced_folder ".", "/cord"
   end
 
   config.vm.define "corddev" do |d|
@@ -15,7 +15,7 @@
     d.vm.hostname = "corddev"
     d.vm.network "private_network", ip: "10.100.198.200"
     d.vm.provision :shell, path: "scripts/bootstrap_ansible.sh"
-    d.vm.provision :shell, inline: "PYTHONUNBUFFERED=1 ansible-playbook /opencord/ansible/corddev.yml -c local"
+    d.vm.provision :shell, inline: "PYTHONUNBUFFERED=1 ansible-playbook /cord/ansible/corddev.yml -c local"
     d.vm.provider "virtualbox" do |v|
       v.memory = 2048
     end
diff --git a/ansible/host_vars/10.100.198.200 b/ansible/host_vars/10.100.198.200
index d498068..6e7ae97 100644
--- a/ansible/host_vars/10.100.198.200
+++ b/ansible/host_vars/10.100.198.200
@@ -1 +1 @@
-ansible_ssh_private_key_file: /opencord/.vagrant/machines/corddev/virtualbox/private_key
+ansible_ssh_private_key_file: /cord/.vagrant/machines/corddev/virtualbox/private_key
diff --git a/ansible/host_vars/10.100.198.201 b/ansible/host_vars/10.100.198.201
index d7d2822..947fbf1 100644
--- a/ansible/host_vars/10.100.198.201
+++ b/ansible/host_vars/10.100.198.201
@@ -1 +1 @@
-ansible_ssh_private_key_file: /opencord/.vagrant/machines/prod/virtualbox/private_key
+ansible_ssh_private_key_file: /cord/.vagrant/machines/prod/virtualbox/private_key
diff --git a/docs/quickstart.md b/docs/quickstart.md
index ff97cb4..760efec 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -43,8 +43,8 @@
 For now you can clone the repository anonymously:
 
    ```
-   git clone https://gerrit.opencord.org/opencord
-   cd opencord
+   git clone https://gerrit.opencord.org/cord
+   cd cord
    ```
 
 If -- for whatever reason -- you decide to clone the repo as a private
@@ -72,10 +72,10 @@
 Switch to the CORD integration directory, which is shared from your host:
 
    ```
-   cd /opencord
+   cd /cord
    ```
    
-Pre-fetch all pre-requisites needed to build all components for OpenCORD. This is the step that takes the longest time as a large number of images and files need to be downloaded.
+Pre-fetch all pre-requisites needed to build all components for CORD. This is the step that takes the longest time as a large number of images and files need to be downloaded.
 
    ```
    ./gradlew fetch
diff --git a/scripts/bootstrap_ansible.sh b/scripts/bootstrap_ansible.sh
index d8550fc..415d6d2 100755
--- a/scripts/bootstrap_ansible.sh
+++ b/scripts/bootstrap_ansible.sh
@@ -22,4 +22,4 @@
 apt-add-repository ppa:ansible/ansible
 apt-get update
 apt-get install -y ansible
-cp /opencord/ansible/ansible.cfg /etc/ansible/ansible.cfg
+cp /cord/ansible/ansible.cfg /etc/ansible/ansible.cfg