diff options
author | schweikh <schweikh@FreeBSD.org> | 2002-10-12 10:31:31 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2002-10-12 10:31:31 +0000 |
commit | b7d872536535fe8afd8ad5080a504fa41a77c095 (patch) | |
tree | c750ff3f496fe6079fff457037e64eba1f20e162 /etc/rc.d/root | |
parent | c60d03847fad771361b5a5590015bfe65a1b3023 (diff) | |
download | FreeBSD-src-b7d872536535fe8afd8ad5080a504fa41a77c095.zip FreeBSD-src-b7d872536535fe8afd8ad5080a504fa41a77c095.tar.gz |
Fix style bugs:
* Space -> tabs conversion.
* Removed blanks before semicolon in "if ... ; then".
* Proper indentation of misindented lines.
* Put a full stop after some comments.
* Removed whitespace at end of line.
Approved by: silence from gordon
Diffstat (limited to 'etc/rc.d/root')
-rwxr-xr-x | etc/rc.d/root | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/root b/etc/rc.d/root index a345893..77ae607 100755 --- a/etc/rc.d/root +++ b/etc/rc.d/root @@ -25,7 +25,7 @@ root_start() [Nn][Oo] | '') ;; *) - if ! mount -u -o rw / ; then + if ! mount -u -o rw /; then echo 'Mounting root filesystem rw failed, startup aborted' exit 1 fi |