diff options
author | Bill Nottingham <notting@redhat.com> | 1999-11-24 20:05:55 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-11-24 20:05:55 +0000 |
commit | 9b49d637621170e50b46c20194088b288dc24e8c (patch) | |
tree | e7d72b6361e1ee3a7ad9e33d005db252a507c349 /rc.d | |
parent | d285d5d6d97a615ee5a57088484c73d170ddf01f (diff) | |
download | initscripts-9b49d637621170e50b46c20194088b288dc24e8c.tar initscripts-9b49d637621170e50b46c20194088b288dc24e8c.tar.gz initscripts-9b49d637621170e50b46c20194088b288dc24e8c.tar.bz2 initscripts-9b49d637621170e50b46c20194088b288dc24e8c.tar.xz initscripts-9b49d637621170e50b46c20194088b288dc24e8c.zip |
fix other syntax error
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 530f6a06..1f9489c1 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -287,7 +287,7 @@ if [ -n "$USEMODULES" ]; then fi # Load mixer settings -if [ grep -q "14 sound" /proc/devices 2>/dev/null -a -f /etc/.aumixrc -a -x /bin/aumix-minimal ]; then +if grep -q "14 sound" /proc/devices 2>/dev/null && [ -f /etc/.aumixrc -a -x /bin/aumix-minimal ]; then action "Loading mixer settings" /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null fi |