diff options
author | Raúl Benencia <rul@kalgan.cc> | 2019-01-08 19:45:19 -0800 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2019-01-08 19:45:19 -0800 |
commit | 943864231aa4caf367ae86a066c1ef63c3d17d41 (patch) | |
tree | 63f1f0b87c8753323ed24052dc114369c8e41a36 /configs/data-dir/ipxe | |
parent | f08e7ef525d431223084184e5e234ed8acbecfc4 (diff) |
Rename example-templates-configs to data-dir
Diffstat (limited to 'configs/data-dir/ipxe')
-rw-r--r-- | configs/data-dir/ipxe/centos.ipxe.slc | 14 | ||||
-rw-r--r-- | configs/data-dir/ipxe/coreos.ipxe.slc | 16 | ||||
-rw-r--r-- | configs/data-dir/ipxe/debian.ipxe.slc | 16 | ||||
-rw-r--r-- | configs/data-dir/ipxe/linux.cfg.slc | 15 | ||||
-rw-r--r-- | configs/data-dir/ipxe/storage.ipxe.slc | 16 | ||||
-rw-r--r-- | configs/data-dir/ipxe/ubuntu-minimal.ipxe.slc | 16 |
6 files changed, 93 insertions, 0 deletions
diff --git a/configs/data-dir/ipxe/centos.ipxe.slc b/configs/data-dir/ipxe/centos.ipxe.slc new file mode 100644 index 0000000..88b3fc2 --- /dev/null +++ b/configs/data-dir/ipxe/centos.ipxe.slc @@ -0,0 +1,14 @@ +{{define "centos.ipxe" -}} +#!ipxe +set hostname {{.hostname}} +set release {{.release}} +set base http://mirror.centos.org/centos/${release}/os/x86_64 + +echo This automatically overwrites data! +echo CentOS ${release} +echo Installing ${hostname} + +kernel ${base}/images/pxeboot/vmlinuz initrd=initrd.img repo=${base} ks=http://{{.baseURL}}/configs/centos.ks?hostname=${hostname}&release=${release} +initrd ${base}/images/pxeboot/initrd.img +boot +{{end}} diff --git a/configs/data-dir/ipxe/coreos.ipxe.slc b/configs/data-dir/ipxe/coreos.ipxe.slc new file mode 100644 index 0000000..64685ff --- /dev/null +++ b/configs/data-dir/ipxe/coreos.ipxe.slc @@ -0,0 +1,16 @@ +{{define "coreos.ipxe" -}} +#!ipxe + +set coreos-url http://stable.release.core-os.net/amd64-usr/current + +echo This will currently autologin into tty1 on the console. +echo From there you can su to root and install CoreOS to disk using: +echo coreos-install -d /dev/sda -C {{.release}} +echo You will probably need to chroot into /dev/sda9 to configure accounts. +echo More info @ http://coreos.com/docs/running-coreos/bare-metal/installing-to-disk/ + +kernel ${coreos-url}/coreos_production_pxe.vmlinuz cloud-config-url=http://{{.baseURL}}/configs/cloudconfig-coreos?release={{.release}}&hostname={{.hostname}} console=tty1 coreos.autologin=tty1 +initrd ${coreos-url}/coreos_production_pxe_image.cpio.gz + +boot +{{end}}
\ No newline at end of file diff --git a/configs/data-dir/ipxe/debian.ipxe.slc b/configs/data-dir/ipxe/debian.ipxe.slc new file mode 100644 index 0000000..8717d5e --- /dev/null +++ b/configs/data-dir/ipxe/debian.ipxe.slc @@ -0,0 +1,16 @@ +{{define "debian.ipxe" -}} +#!ipxe + +echo This automatically overwrites data! +echo Debian {{.release}} + +set mirror http://ftp.debian.org/debian/dists/{{.release}}/main/installer-amd64/current/images/netboot/debian-installer/amd64 + +chain http://{{.baseURL}}/configs/linux.cfg?hostname={{.hostname}} + +imgfree + +kernel ${mirror}/linux auto=true priority=critical initrd=initrd.gz keyboard-configuration/xkb-keymap=us preseed/url=http://{{.baseURL}}/configs/debian.preseed ${linuxargs} +initrd ${mirror}/initrd.gz +boot +{{end}} diff --git a/configs/data-dir/ipxe/linux.cfg.slc b/configs/data-dir/ipxe/linux.cfg.slc new file mode 100644 index 0000000..512f7f2 --- /dev/null +++ b/configs/data-dir/ipxe/linux.cfg.slc @@ -0,0 +1,15 @@ +{{define "linux.cfg" -}} +#!ipxe + +# We set VGA to normal and nomodeset because often the framebuffers +# are extraordinarily slow. + +# Two serial interfaces enabled, hopefully one for local and one for remote +# on Dells with iDRAC/iKVM (serial over lan). + +# libata.force=noncq for https://bbs.archlinux.org/viewtopic.php?id=196267 +# We probably want ncq for harddrives, but we don't have many of those. +# queued trim is broken with our 850PRO/Linux combo, or maybe entirely on the Samsung 850 PRO SSDs + +set linuxargs hostname={{.hostname}} console=tty0 console=ttyS0,115200n8 console=ttyS1,115200n8 vga=normal biosdevname=0 nomodeset interface=auto libata.force=noncq consoleblank=0 +{{end}}
\ No newline at end of file diff --git a/configs/data-dir/ipxe/storage.ipxe.slc b/configs/data-dir/ipxe/storage.ipxe.slc new file mode 100644 index 0000000..457dad7 --- /dev/null +++ b/configs/data-dir/ipxe/storage.ipxe.slc @@ -0,0 +1,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/storage.preseed ${linuxargs} +initrd ${mirror}/initrd.gz +boot +{{end}}
\ No newline at end of file diff --git a/configs/data-dir/ipxe/ubuntu-minimal.ipxe.slc b/configs/data-dir/ipxe/ubuntu-minimal.ipxe.slc new file mode 100644 index 0000000..e52f63c --- /dev/null +++ b/configs/data-dir/ipxe/ubuntu-minimal.ipxe.slc @@ -0,0 +1,16 @@ +{{define "ubuntu-minimal.ipxe" -}} +#!ipxe + +echo This automatically overwrites data! +echo Ubuntu {{.release}} minimal + +set mirror http://mirror.rackspace.com/ubuntu/dists/{{.release}}/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64 + +chain http://{{.baseURL}}/configs/linux.cfg?hostname={{.hostname}} + +imgfree + +kernel ${mirror}/linux auto=true priority=critical initrd=initrd.gz preseed/url=http://{{.baseURL}}/configs/ubuntu-minimal.preseed ${linuxargs} +initrd ${mirror}/initrd.gz +boot +{{end}} |