fd0107f11a
At present it just creates default qubes.xml (empty barring labels and AdminVM). In the future it can be evolved into backend for firstboot.
8 lines
136 B
Python
Executable File
8 lines
136 B
Python
Executable File
#!/usr/bin/python2
|
|
# vim: fileencoding=utf-8
|
|
|
|
import sys
|
|
import qubes.tools.qubes_create
|
|
|
|
sys.exit(not qubes.tools.qubes_create.main())
|