blob: 64d410b481cf7a07ea7fe7ab5b5364375a3621e4 (
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}} storage (RAID)
set mirror http://archive.ubuntu.com/ubuntu/dists/{{.release}}/main/installer-amd64/current/legacy-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}}
|