/etc/maas/templates/pxe/config.xinstall.template is in maas-cluster-controller 1.5+bzr2252-0ubuntu1.
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 | DEFAULT execute
SAY Booting under MAAS direction...
SAY {{kernel_params() | kernel_command}}
LABEL execute
KERNEL ifcpu64.c32
APPEND amd64 -- i386
LABEL amd64
KERNEL {{kernel_params(arch="amd64") | kernel_path }}
INITRD {{kernel_params(arch="amd64") | initrd_path }}
APPEND {{kernel_params(arch="amd64") | kernel_command}}
IPAPPEND 2
LABEL i386
KERNEL {{kernel_params(arch="i386") | kernel_path }}
INITRD {{kernel_params(arch="i386") | initrd_path }}
APPEND {{kernel_params(arch="i386") | kernel_command}}
IPAPPEND 2
|