blob: 174949d9acb9b353750a8f730891a1253bba4fae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{define "storage.ipxe" -}}
#!ipxe
echo This automatically overwrites data!
echo Ubuntu {{.release}} amd64 storage
set mirror http://mirror.rackspace.com/ubuntu/dists/{{.release}}/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64
chain --autofree http://{{.baseURL}}/configs/linux.cfg?hostname={{.hostname}}
imgfree
kernel ${mirror}/linux auto=true priority=critical initrd=initrd.gz preseed/url=http://{{.baseURL}}/configs/preseeds/storage ${linuxargs}
initrd ${mirror}/initrd.gz
boot
{{end}}
|