settings-wni-Windows_NT.py 898 B

1234567891011121314151617181920
  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. # Specific to WNI - normally VM have this file
  13. system_path['qrexec_agent_path'] = \
  14. 'c:/program files/Invisible Things Lab/Qubes/bin/qrexec-agent.exe'
  15. defaults['libvirt_uri'] = 'wni:///'
  16. defaults['storage_class'] = QubesWniVmStorage