diff options
author | schweikh <schweikh@FreeBSD.org> | 2002-10-03 20:39:29 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2002-10-03 20:39:29 +0000 |
commit | 510f8bbd85a5e0a3ef17cd763a1031762a447cf7 (patch) | |
tree | dcab5d68325441ef4e50fb72ddb122cccef601a4 /etc/rc | |
parent | d0bc83d7d32a5862227be15f9280f153663d4599 (diff) | |
download | FreeBSD-src-510f8bbd85a5e0a3ef17cd763a1031762a447cf7.zip FreeBSD-src-510f8bbd85a5e0a3ef17cd763a1031762a447cf7.tar.gz |
Fix all whitespace style bugs where spaces have been used
where tabs should have been. Cut & paste disease?
Spotted by: vi(1) tabstop=4
MFC after: 2 weeks
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -54,10 +54,10 @@ export HOME PATH # XXX - The only purpose of duplicating it here is to catch rc_ng="YES" # if [ -r /etc/defaults/rc.conf ]; then - . /etc/defaults/rc.conf - source_rc_confs + . /etc/defaults/rc.conf + source_rc_confs elif [ -r /etc/rc.conf ]; then - . /etc/rc.conf + . /etc/rc.conf fi # Diskless setups have to depend on a different mechanism since @@ -75,9 +75,9 @@ case ${rc_ng} in load_rc_config 'XXX' if [ "$1" = autoboot ]; then - autoboot=yes + autoboot=yes _boot="faststart" - rc_fast=yes # run_rc_command(): do fast booting + rc_fast=yes # run_rc_command(): do fast booting else autoboot=no _boot="start" @@ -87,7 +87,7 @@ case ${rc_ng} in files=`rcorder -k ${os} -s nostart /etc/rc.d/* 2>/dev/null` for _rc_elem in ${files}; do - run_rc_script ${_rc_elem} ${_boot} + run_rc_script ${_rc_elem} ${_boot} # Local FreeBSD hack to reload the rc.conf on # a return status of 2 if [ $? -eq 2 ]; then @@ -158,12 +158,12 @@ chkdepend() { [Yy][Ee][Ss]) case ${dep_val} in [Yy][Ee][Ss]) - ;; + ;; *) - eval ${dep_var}="YES" - echo "DEPENDENCY NOTE: ${dep} will be enabled" \ - "to support ${svc}" - ;; + eval ${dep_var}="YES" + echo "DEPENDENCY NOTE: ${dep} will be enabled" \ + "to support ${svc}" + ;; esac ;; esac @@ -545,10 +545,10 @@ for i in ${networkfs_types}; do fi case "`mount -d -a -t ${fstype}`" in *mount_${fstype}*) - echo -n "Mounting ${fsdecr} filesystems:" - mount -a -t ${fstype} - echo '.' - ;; + echo -n "Mounting ${fsdecr} filesystems:" + mount -a -t ${fstype} + echo '.' + ;; esac done |