Renamed all files to drop the -lxc suffic
diff --git a/onos-build-vm.py b/onos-build-vm.py
index 38af1a9..ae8e2d0 100755
--- a/onos-build-vm.py
+++ b/onos-build-vm.py
@@ -25,16 +25,16 @@
def installONOS( vm, prompt=Prompt ):
# start with sendline
#TODO consider resizing the HDD
- url = 'https://gerrit.onosproject.org/gitweb?p=onos-vm.git;a=blob_plain;hb=refs/heads/new-onos-tutorial;f=vm-setup-lxc.sh'
- vm.sendline( ' wget -O vm-setup-lxc.sh "%s" | bash' % url ) # space prefix is used to avoid entry in history
+ url = 'https://gerrit.onosproject.org/gitweb?p=onos-vm.git;a=blob_plain;hb=refs/heads/new-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-lxc.sh' )
+ vm.sendline( 'bash vm-setup.sh' )
vm.expect( prompt, timeout=3600 )
- url = 'https://gerrit.onosproject.org/gitweb?p=onos-vm.git;a=blob_plain;hb=refs/heads/new-onos-tutorial;f=onos-setup-lxc.sh'
- vm.sendline( ' wget -O onos-setup-lxc.sh "%s" | bash' % url ) # space prefix is used to avoid entry in history
+ url = 'https://gerrit.onosproject.org/gitweb?p=onos-vm.git;a=blob_plain;hb=refs/heads/new-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-lxc.sh' )
+ vm.sendline( 'bash onos-setup.sh' )
vm.expect(prompt, timeout=3600)