summaryrefslogtreecommitdiff
path: root/archiso/install/archiso_pxe_nfs
diff options
context:
space:
mode:
Diffstat (limited to 'archiso/install/archiso_pxe_nfs')
-rw-r--r--archiso/install/archiso_pxe_nfs6
1 files changed, 4 insertions, 2 deletions
diff --git a/archiso/install/archiso_pxe_nfs b/archiso/install/archiso_pxe_nfs
index 52be9f3..f7b6f5d 100644
--- a/archiso/install/archiso_pxe_nfs
+++ b/archiso/install/archiso_pxe_nfs
@@ -1,10 +1,10 @@
-# vim: set ft=sh:
+#!/bin/bash
build() {
MODULES="nfs"
SCRIPT="archiso_pxe_nfs"
- add_binary "/lib/initcpio/nfsmount" "/bin/nfsmount"
+ add_binary /lib/initcpio/nfsmount /bin/nfsmount
}
help() {
@@ -12,3 +12,5 @@ help() {
This hook loads the necessary modules for boot via PXE and NFS.
HELPEOF
}
+
+# vim: set ft=sh ts=4 sw=4 et: