diff options
author | Seblu <seblu@seblu.net> | 2011-02-06 02:58:58 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2011-02-27 11:49:32 +0100 |
commit | 3d9fbd69fbab72ccdbdfda584b732636cece908c (patch) | |
tree | da1794311f9fca7bbe762899322ba62661e4650a /rc.sysinit | |
parent | ee3385a97bef10fc20ed8c04e1b0dee0d5f0194c (diff) |
Remove grep use where a simple env var check can be made
Diffstat (limited to 'rc.sysinit')
-rwxr-xr-x | rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ fi # anything more serious than KERN_WARNING goes to the console # 'verbose' cmdline parameter enables more messages -if /bin/grep -q " verbose" /proc/cmdline; then +if [[ -n "$verbose" ]]; then /bin/dmesg -n 8 else /bin/dmesg -n 3 |