comgt: move ifup invocation back into background subshell to prevent hotplug deadlocks
SVN-Revision: 26810
This commit is contained in:
parent
549067e2b4
commit
29392373f3
1 changed files with 3 additions and 6 deletions
|
@ -21,12 +21,9 @@ find_3g_iface() {
|
|||
local dev
|
||||
config_get dev "$cfg" device
|
||||
|
||||
if [ "${dev##*/}" = "${tty##*/}" ]; then
|
||||
[ -z "$(ls /var/lock | grep ${dev##*/})" ] && {
|
||||
log "Starting interface $cfg for device ${dev##*/}"
|
||||
sleep 1
|
||||
/sbin/ifup "$cfg"
|
||||
}
|
||||
if [ "${dev##*/}" = "${tty##*/}" ] && [ -z "$(ls /var/lock | grep ${dev##*/})" ]; then
|
||||
log "Starting interface $cfg for device ${dev##*/}"
|
||||
( sleep 1; /sbin/ifup "$cfg" ) &
|
||||
fi
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue