Guest User

Untitled

a guest
Feb 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. import os, re
  2. arch = os.uname()[4]
  3. if re.search('64', arch):
  4. arch_libdir = 'lib64'
  5. else:
  6. arch_libdir = 'lib'
  7.  
  8. kernel = "/usr/lib/xen/boot/hvmloader"
  9. builder='hvm'
  10. memory = 2048
  11. name = "kagami"
  12. vcpus=2
  13. pae=0
  14. vif = [ 'bridge=eth0.254','bridge=eth0.61' ]
  15.  
  16. disk = [ 'phy:/dev/disk/by-path/ip-169.254.0.1:3260-iscsi-iqn.1986-03.com.sun:02:fcac26ec-b0eb-66d8-e2b7-a58c664071b5-lun-0,hda,w']
  17. device_model = '/usr/' + arch_libdir + '/xen/bin/qemu-dm'
  18.  
  19. boot='cd'
  20. sdl=0
  21. vnc=1
  22. vnclisten='0.0.0.0'
  23. vncviewer=0
  24. stdvga=0
  25. serial='pty'
  26. ne2000=0
  27. audio=0
  28. localtime=1
  29. usb=1
  30. usbdevice='tablet'
Add Comment
Please, Sign In to add comment