summaryrefslogtreecommitdiffstats
path: root/src/os-plugins/plugins/vmchooser/files/vm-template.xml
blob: f6b59fea38f230fd05a3fcc8d7fe3709125f40f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<settings>
  <entry>
    <!-- "vmware", "virtualbox", "qemu" -->
    <virtualmachine param="vmware"/>
    <!-- VM-name with ending .vmdk, .img, .vdi, .qcow2 -->    
    <image_name param="vm-image.vmdk"/>
    <!-- sort after parameters then alphabet, values 0(top) - 9(bottom) -->    
    <priority param="5"/>
    <!-- title shown in the menu -->
    <title param="My VM Image"/>
    <!-- description shown when image is chosen -->
    <description>Image for lectures with a lot of software: office, ...
    </description>
    <!-- if active="true" the image is selectable via vmchooser -->
    <active param="true"/>
    <!-- in which environment this image will be selectable via vmchooser -->
    <environment param="default"/>
    <!-- image locked with a password? -->
    <locked param="false"/>
    <creator param="Your Name"/>
    <email param="your@e-mail.add"/>
    <phone param="0123-12345678"/>
    <!-- when should this image be deactivated automatically -->
    <valid_until param="DD-MM-YY"/>
    <!-- type of the OS: if you do not know use "other" -->
    <!-- vmware refer to: http://sanbarrow.com/vmx/vmx-guestos.html -->
    <os param="winxppro"/>
    <!-- "nat", "bridge", "hostonly" -->
    <network param="nat"/>
    <!-- use a different virtual network card than default -->
    <netcard param="e1000"/>
    <!-- activate serial port: "ttyS0", "auto" (recommended) -->
    <serialport param="false"/>
    <!-- activate parallel port: "parport0" (recommended) -->
    <parport param="false"/>
    <!-- enable 3D support -->
    <enable3d param="true"/>
    <!-- which shared folders should be connected -->
    <shared_folders param="true">
      <!--  name="Home" path="/home/$USER" for internal VMware sf -->
      <shared_folder name="" path="" pass=""></shared_folder>
    </shared_folders>
    <!-- which printers should be connected -->
    <printers>
      <printer name="" path="">Human readable description</printer>
    </printers>
    <!-- which scanners should be connected -->
    <scanners>
      <scanner name="" path="">Description</scanner>
    </scanners>
    <!-- added automatically through vmchooser when started
      <username param="user-id"/>
    -->
    <!-- obsolete, maybe for future implementations
      <xdm param="false">
      </xdm>
    -->
  </entry>
</settings>