diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-02-03 11:13:37 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-02-22 21:18:07 -0300 |
commit | 27940c420f01f550f36c3aa25633b43a4f2a2069 (patch) | |
tree | 065be182f2ac2314d3b50120c60d847103f9f10c /archiso/install/archiso_pxe_nfs | |
parent | c593c2bd2418c865dc289f8fccd81a1631e9b191 (diff) | |
download | archiso32-27940c420f01f550f36c3aa25633b43a4f2a2069.tar.xz |
[archiso] Misc style cleanups
* 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>
Diffstat (limited to 'archiso/install/archiso_pxe_nfs')
-rw-r--r-- | archiso/install/archiso_pxe_nfs | 6 |
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: |