diff options
author | dougb <dougb@FreeBSD.org> | 2000-12-17 08:16:06 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2000-12-17 08:16:06 +0000 |
commit | 1e8ecc617bb05e72dce649d99982f0fbe0ad64e1 (patch) | |
tree | 8bb5bbce19114a1cdb5dd43110cd1aab487c45d7 /etc/rc.d/pccard | |
parent | d8586c3f20a1e9e2925a2cdb240369fa29d0630e (diff) | |
download | FreeBSD-src-1e8ecc617bb05e72dce649d99982f0fbe0ad64e1.zip FreeBSD-src-1e8ecc617bb05e72dce649d99982f0fbe0ad64e1.tar.gz |
Apply a more consistent style to the echo statements in /etc/ scripts.
* Put quotes around each line
* Single quotes for lines with no variable interpolation
* Double quotes if there is
* Capitalize each word that begins a line
* Make echo -n 'Doing foo:' ... echo '.' more of a standard
No functionality changes
Diffstat (limited to 'etc/rc.d/pccard')
-rw-r--r-- | etc/rc.d/pccard | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/rc.d/pccard b/etc/rc.d/pccard index 8ba141d..63ac577 100644 --- a/etc/rc.d/pccard +++ b/etc/rc.d/pccard @@ -31,7 +31,7 @@ case ${pccard_enable} in [Yy][Ee][Ss]) - echo "Enable PC-card." + echo 'Enable PC-card:' case ${pccard_mem} in [Dd][Ee][Ff][Aa][Uu][Ll][Tt]) @@ -51,5 +51,6 @@ case ${pccard_enable} in fi pccardd ${pccardd_flags} 2>&1 > /var/log/pccardd.debug + echo '.' ;; esac |