index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archiso/install/archiso_pxe_nfs | 6 |
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: |