This file is indexed.

/etc/vmbuilder/vmware/vmware.tmpl is in python-vm-builder 0.12.4+bzr489-0ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
config.version = "8"
virtualHW.version = "$vmhwversion"
scsi0.present = "FALSE"
scsi0.virtualDev = "lsilogic"
memsize = "$mem"
numvcpus = "$numvcpus"
Ethernet0.virtualDev = "vlance"
Ethernet0.present = "TRUE"
Ethernet0.connectionType = "bridged"
#if $mac
Ethernet0.addressType = "static"
Ethernet0.address = "$mac"
#end if
displayName = "$hostname $arch"
guestOS = "$guestos"
priority.grabbed = "normal"
priority.ungrabbed = "normal"
powerType.powerOff = "hard"
powerType.powerOn = "hard"
powerType.suspend = "hard"
powerType.reset = "hard"
floppy0.present = "FALSE"
#set $i = -1
#for $disk in $disks
    #set $i = $i + 1
    #set $bus = $i / 2
    #set $id = $i % 2
ide${bus}:${id}.present = "TRUE"
ide${bus}:${id}.fileName = "${disk.filename}"
#end for