27940c420f
* Add #!/bin/bash to install hooks and fixed vimlines. * Removed empty variables. * Reorder variables, adjust brace/parens in functions. * Removed things implemented in base hook (/tmp, /etc/fstab). Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
17 lines
261 B
Bash
17 lines
261 B
Bash
#!/bin/bash
|
|
|
|
build() {
|
|
MODULES="nfs"
|
|
SCRIPT="archiso_pxe_nfs"
|
|
|
|
add_binary /lib/initcpio/nfsmount /bin/nfsmount
|
|
}
|
|
|
|
help() {
|
|
cat <<HELPEOF
|
|
This hook loads the necessary modules for boot via PXE and NFS.
|
|
HELPEOF
|
|
}
|
|
|
|
# vim: set ft=sh ts=4 sw=4 et:
|