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_nbd | |
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_nbd')
-rw-r--r-- | archiso/install/archiso_pxe_nbd | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/archiso/install/archiso_pxe_nbd b/archiso/install/archiso_pxe_nbd index 747e5b9..0784e2c 100644 --- a/archiso/install/archiso_pxe_nbd +++ b/archiso/install/archiso_pxe_nbd @@ -1,20 +1,18 @@ -# vim: set ft=sh: +#!/bin/bash -build () -{ +build() { MODULES="nbd" - BINARIES="" - FILES="" SCRIPT="archiso_pxe_nbd" add_binary nbd-client - add_file "/lib/initcpio/archiso_pxe_nbd" "/archiso_pxe_nbd" + add_file /lib/initcpio/archiso_pxe_nbd /archiso_pxe_nbd } -help () -{ +help() { cat<<HELPEOF This hook loads the necessary modules for boot via PXE and NBD. HELPEOF } + +# vim: set ft=sh ts=4 sw=4 et: |