From 27940c420f01f550f36c3aa25633b43a4f2a2069 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Fri, 3 Feb 2012 11:13:37 -0300 Subject: [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 --- archiso/install/archiso_pxe_nbd | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'archiso/install/archiso_pxe_nbd') 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<