summaryrefslogtreecommitdiffstats
path: root/install/resume
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-07-11 04:44:04 +0200
committerDave Reisner <dreisner@archlinux.org>2011-09-27 12:18:04 +0200
commit1ce14002289b676c54729e9d9dfaa7f6fd58024b (patch)
tree91e887e78f744c81e09e14e37cdd1863b27ef369 /install/resume
parent1793ad71472d85912dd258cc6730e20a46dbbb17 (diff)
downloadmkinitcpio-1ce14002289b676c54729e9d9dfaa7f6fd58024b.tar.gz
mkinitcpio-1ce14002289b676c54729e9d9dfaa7f6fd58024b.tar.xz
cleanup and bashify install hooks
No logical code changes -- this is purely a syntactical cleanup and standardization across the build hooks along with ensuring that help messages are wrapped to 80 columns or less. All hooks get the same treatment, adhering to the following style: #!/bin/bash build() { COMMANDS } help() { cat <<HELPEOF This is a help message. HELPEOF } # vim: set ft=sh ts=4 sw=4 et: Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'install/resume')
-rw-r--r--install/resume19
1 files changed, 8 insertions, 11 deletions
diff --git a/install/resume b/install/resume
index dcf6442..d261aad 100644
--- a/install/resume
+++ b/install/resume
@@ -1,17 +1,14 @@
-# vim:set ft=sh:
+#!/bin/bash
-build()
-{
- MODULES=""
- BINARIES=""
- FILES=""
+build() {
SCRIPT="resume"
}
-help ()
-{
-cat<<HELPEOF
- This hook initializes support for resuming from Disk.
- Supports swsusp and suspend2.
+help() {
+ cat <<HELPEOF
+This hook initializes support for resuming from Disk. Supports swsusp and
+suspend2.
HELPEOF
}
+
+# vim: set ft=sh ts=4 sw=4 et: