longer timeout
diff --git a/onos-build-vm.py b/onos-build-vm.py
index 3dc44b2..b1eb75d 100755
--- a/onos-build-vm.py
+++ b/onos-build-vm.py
@@ -27,7 +27,6 @@
     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 )
 
     
@@ -54,7 +53,7 @@
     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' )
-    vm.expect(prompt, timeout=600)
+    vm.expect(prompt, timeout=1200)
   
 
 def vmdk2size( vmdk ):