wtf2
diff --git a/onos-build-vm.py b/onos-build-vm.py
index b2d035a..5392f70 100755
--- a/onos-build-vm.py
+++ b/onos-build-vm.py
@@ -23,17 +23,17 @@
 def installONOS( vm, prompt=Prompt ):
     # start with sendline
     #TODO consider resizing the HDD
-    url = 'https://gerrit.onlab.us/gitweb?p=ONOS-VM.git;a=blob_plain;hb=refs/heads/onos-tutorial;f=vm-setup.sh'
+    url = 'https://gerrit.onosproject.org/gitweb?p=ONOS-VM.git;a=blob_plain;hb=refs/heads/onos-tutorial;f=vm-setup.sh'
     vm.sendline( ' wget -O vm-setup.sh "%s" | bash' % url ) # space prefix is used to avoid entry in history
     vm.expect( prompt, timeout=20 )
     vm.sendline( 'bash vm-setup.sh' )
     # end with expect prompt
     vm.expect( prompt, timeout=1200 )
 
-    vm.sendline( 'git clone https://gerrit.onlab.us/onos-next/' )
-    vm.expect("Username for 'https://gerrit.onlab.us':", timeout=30)
+    vm.sendline( 'git clone https://gerrit.onosproject.org/onos-next/' )
+    vm.expect("Username for 'https://gerrit.onosproject.org':", timeout=30)
     vm.sendline('vm')
-    vm.expect("Password for 'https://vm@gerrit.onlab.us':", timeout=30)
+    vm.expect("Password for 'https://vm@gerrit.onosproject.org':", timeout=30)
     vm.sendline(os.environ['ONOSPASSWORD'])
 
     vm.expect( prompt, timeout=1200 )
@@ -45,7 +45,7 @@
     
     vm.expect( prompt, timeout=1200 )
    
-    url = 'https://gerrit.onlab.us/gitweb?p=ONOS-VM.git;a=blob_plain;hb=refs/heads/onos-tutorial;f=onos-setup.sh'
+    url = 'https://gerrit.onosproject.org/gitweb?p=ONOS-VM.git;a=blob_plain;hb=refs/heads/onos-tutorial;f=onos-setup.sh'
     vm.sendline( ' wget -O onos-setup.sh "%s" | bash' % url ) # space prefix is used to avoid entry in history
     vm.expect( prompt, timeout=20 )
     vm.sendline( 'bash onos-setup.sh' )