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_loop_mnt | |
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_loop_mnt')
-rw-r--r-- | archiso/install/archiso_loop_mnt | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/archiso/install/archiso_loop_mnt b/archiso/install/archiso_loop_mnt index 886cbb8..4141043 100644 --- a/archiso/install/archiso_loop_mnt +++ b/archiso/install/archiso_loop_mnt @@ -1,18 +1,13 @@ -# vim: set ft=sh: - -build () -{ - MODULES="" - - BINARIES="" - FILES="" +#!/bin/bash +build() { SCRIPT="archiso_loop_mnt" } -help () -{ +help() { cat<<HELPEOF This hook loads the necessary modules for boot via loop device. HELPEOF } + +# vim: set ft=sh ts=4 sw=4 et: |