-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.sh.example
61 lines (53 loc) · 1.78 KB
/
config.sh.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# pixieboot configuration
#
# available variables:
# - BASE: points always to the directory, where setup.sh is located
#
# NFSHOST is NECCESSARY variable!
# limited by TFTP, you're not allowed to use a DNSname in NFSHOST
export NFSHOST=<ip>
# iPXE
#
# iPXE is also available either via native boot or via chainloading of
# undionly.kpxe. This enables every normal PXE computer to boot via iPXE.
#
# If you do not want to boot via (chainloaded) iPXE, disable it, by
# setting it to 0. Everything else will get interpreted as enabled.
#
#export IPXE_ENABLED=1
# If you want to use a local mirror, change the mirror URL.
#export MIRROR=http://mirrors.kernel.org/ubuntu
#export NFSPREFIX=$BASE
# SYSTEMS
#
# This has to be a space-separated list of the system-folders in recipes/.
#
# If you don't define SYSTEMS_ENABLED, all available systems will get installed.
#
# If you want to enforce a special order of all systems in the PXELINUX.cfg file,
# you have to push your special systems in this order here in the variable
#
#export SYSTEMS_ENABLED=
# INTEGRATIONS
#
## What to Enable?
#
# If you don't define INTEGRATIONS_ENABLED, all available integrations will get installed.
#
#export INTEGRATIONS_ENABLED="nfs dnsmasq nginx pxebinaries"
# NFS
#export CMD_RELOAD_EXPORTS="exportfs -a"
#export FILE_NFS_EXPORTS=/etc/exports.d/pixieboot.exports
# dnsmasq
#export CMD_RELOAD_DNSMASQ="service dnsmasq restart"
#export FILE_DNSMASQ_CONFIG=/etc/dnsmasq.d/pixieboot.conf
# nginx
#
#export FILE_NGINX_CONFIG=/etc/nginx/sites-available/pixieboot.conf
#export FILE_NGINX_CONFIGLINK=/etc/nginx/sites-enabled/pixieboot.conf
#export CMD_RELOAD_NGINX="nginx -s reload"
# PXE/iPXE
#
#export FILE_PXE_LINUX=/usr/lib/syslinux/pxelinux.0
#export FILE_PXE_MENU=/usr/lib/syslinux/menu.c32
#export FILE_PXE_UNDI=/usr/lib/ipxe/undionly.kpxe