blob: 95ec8b89c04e356757343bb1746b388966b2c02b [file] [log] [blame]
Zack Williams5b5d9a72020-11-06 13:59:06 -07001---
2# pxeboot defaults/main.yml
3#
4# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6
7# webserver that serves the chainload script
8pxeboot_web_server: "http://boot.example.com"
9pxeboot_web_root: "/srv/sites/boot.example.com"
10
11# dist dir, where downloaded files are stored
12pxeboot_dist_dir: "/opt/dist/pxeboot"
13
14# memtest image
15# see: https://ipxe.org/appnote/memtest
16pxeboot_memtest_version: "5.01"
17pxeboot_memtest_checksum: "sha256:42b8da364fec58de1ea8d8ec8102bc3d2e7b1f10e8e63b55a2d8f7aba3fad715"
18
19# this beta version crashes on some systems...
20# pxeboot_memtest_version: "5.31b"
21# pxeboot_memtest_checksum: >
22# "sha256:ef0f31be2f7d72ceac3e9382ff8668b9ace4881eed730cc733756bfdb1cb427a"
23
24pxeboot_syslinux_version: "5.10"
25pxeboot_syslinux_checksum: "sha256:d9cd7727bfed2c0ca5bf07bb3d213286e014a78e92a6a89ac32eb906d6b7ab3f"
26
27# Ubuntu 18.04 image
28pxeboot_ubuntu1804_base_url: "http://archive.ubuntu.com/ubuntu/dists/bionic-updates/main/installer-amd64"
29pxeboot_ubuntu1804_version: "20101020ubuntu543.17/images/hwe-netboot/ubuntu-installer/amd64"
30
31pxeboot_ubuntu1804_files:
32 - name: "linux"
33 checksum: "sha256:192f8a4357d6aa4d551ea943ec7c947e1f0b3a9a4e3ecd4dc483f8cb1972584e"
34 - name: "initrd.gz"
35 checksum: "sha256:b09083fd563c183f3ddbe1e28132620f2c5466d49c25c0b8299ae581165d04db"
36
37pxeboot_ubuntu1804_linux_args: ""
38
39# preseed config
40
41# this should be replaced with a modular crypt string, or login will not work.
42preseed_onfadmin_pw_crypt: "!!"
43
44# this needs to be set as pubkey auth is the only remote login method
45preseed_onfadmin_ssh_pubkey: ""
46
47# list of hosts
48pxeboot_hosts:
49 - serial: "12345678"
50 hostname: "host"
51 domain: "domain"