blob: 9e2ff655c3a168ab7b24654ad51567a5d43af19a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
build() {
SCRIPT="archiso_pxe_http"
add_binary curl
}
help() {
cat<<HELPEOF
This hook loads the necessary modules for boot via PXE and HTTP.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et:
|