settings-wni-Windows_NT.py 1.1 KB

123456789101112131415161718192021222324
  1. #!/usr/bin/python2
  2. from __future__ import absolute_import
  3. from qubes.storage.wni import QubesWniVmStorage
  4. def apply(system_path, vm_files, defaults):
  5. system_path['qubes_base_dir'] = 'c:\\qubes'
  6. system_path['config_template_pv'] = 'c:/program files/Invisible Things Lab/Qubes/vm-template.xml'
  7. system_path['config_template_hvm'] = 'c:/program files/Invisible Things Lab/Qubes/vm-template-hvm.xml'
  8. system_path['qubes_icon_dir'] = \
  9. 'c:/program files/Invisible Things Lab/Qubes/icons'
  10. system_path['qubesdb_daemon_path'] = \
  11. 'c:/program files/Invisible Things Lab/Qubes/bin/qubesdb-daemon.exe'
  12. system_path['qrexec_daemon_path'] = \
  13. 'c:/program files/Invisible Things Lab/Qubes/bin/qrexec-daemon.exe'
  14. system_path['qrexec_client_path'] = \
  15. 'c:/program files/Invisible Things Lab/Qubes/bin/qrexec-client.exe'
  16. # Specific to WNI - normally VM have this file
  17. system_path['qrexec_agent_path'] = \
  18. 'c:/program files/Invisible Things Lab/Qubes/bin/qrexec-agent.exe'
  19. defaults['libvirt_uri'] = 'wni:///'
  20. defaults['storage_class'] = QubesWniVmStorage