diff options
author | Roy Marples <roy@marples.name> | 2007-11-28 15:45:03 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-28 15:45:03 +0000 |
commit | ac9279cc0d5a00bc17908b2914941186020cd3ce (patch) | |
tree | 850a4fe19917113e75bfd2e79d00b58208468503 /init.d.Linux/modules | |
parent | 444f23e2d158389b22d40537fc9b027d9f575229 (diff) |
Massive whitespace cleanup
Diffstat (limited to 'init.d.Linux/modules')
-rwxr-xr-x | init.d.Linux/modules | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/init.d.Linux/modules b/init.d.Linux/modules index e6590ca6..d2f25b67 100755 --- a/init.d.Linux/modules +++ b/init.d.Linux/modules @@ -45,7 +45,7 @@ load_modules() { eindent local x= cnt=0 - for x in "$@" ; do + for x in "$@"; do set -- ${x} ebegin "Loading module $1" eval modprobe -q "$@" @@ -92,16 +92,16 @@ start() { auto=/etc/modules.autoload else local x= f="/etc/modules.autoload.d/kernel" - for x in "${KV}" ${KV_MAJOR}.${KV_MINOR}.${KV_MICRO} ${KV_MAJOR}.${KV_MINOR} ; do - if [ -f "${f}-${x}.${RC_SOFTLEVEL}" ] ; then + for x in "${KV}" ${KV_MAJOR}.${KV_MINOR}.${KV_MICRO} ${KV_MAJOR}.${KV_MINOR}; do + if [ -f "${f}-${x}.${RC_SOFTLEVEL}" ]; then auto="${f}-${x}.${RC_SOFTLEVEL}" break fi - if [ "${RC_SOFTLEVEL}" = "${RC_BOOTLEVEL}" -a -f "${f}-${x}.${RC_DEFAULTLEVEL}" ] ; then + if [ "${RC_SOFTLEVEL}" = "${RC_BOOTLEVEL}" -a -f "${f}-${x}.${RC_DEFAULTLEVEL}" ]; then auto="${f}-${x}.${RC_DEFAULTLEVEL}" break fi - if [ -f "${f}-${x}" ] ; then + if [ -f "${f}-${x}" ]; then auto="${f}-${x}" break fi |