forked from tinyvmi/tinyvmi
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdomain_config
More file actions
22 lines (16 loc) · 787 Bytes
/
domain_config
File metadata and controls
22 lines (16 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- mode: python; -*-
#============================================================================
# Python configuration setup for 'xm create'.
# This script sets the parameters used when a domain is created using 'xm create'.
# You use a separate script for each domain you want to create, or
# you can set the parameters for the domain on the xm command line.
#============================================================================
#----------------------------------------------------------------------------
# Kernel image file.
kernel = "mini-os.gz"
# Initial memory allocation (in megabytes) for the new domain.
memory = 64
# A name for your domain. All domains must have different names.
name = "TinyVMI"
on_crash = 'destroy'
seclabel='system_u:system_r:domU_t'