Remove not needed redirection of kldstat -q output to /dev/null.
Noticed by: pjd MFC after: 3 days
This commit is contained in:
parent
3afbecfca5
commit
24ecba159a
@ -18,7 +18,7 @@ start_precmd="hcsecd_prestart"
|
||||
|
||||
hcsecd_prestart()
|
||||
{
|
||||
if ! kldstat -q -m ng_btsocket > /dev/null 2>&1 ; then
|
||||
if ! kldstat -q -m ng_btsocket ; then
|
||||
if kldload ng_btsocket > /dev/null 2>&1 ; then
|
||||
info 'ng_btsocket module loaded'
|
||||
else
|
||||
|
@ -17,7 +17,7 @@ start_precmd="sdpd_prestart"
|
||||
|
||||
sdpd_prestart()
|
||||
{
|
||||
if ! kldstat -q -m ng_btsocket > /dev/null 2>&1 ; then
|
||||
if ! kldstat -q -m ng_btsocket ; then
|
||||
if kldload ng_btsocket > /dev/null 2>&1 ; then
|
||||
info 'ng_btsocket module loaded'
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user