diff options
author | Roy Marples <roy@marples.name> | 2007-04-19 06:46:29 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-04-19 06:46:29 +0000 |
commit | f05ac25185ddcd4f84b35ff3ffdcc54a36bc6bd7 (patch) | |
tree | b2babd7a02ed52e638f175bac60a6b6010382dd5 /sh | |
parent | fb2f0495a6e25a304675412d9f635e73884e7c44 (diff) |
Fix bridge some more, remove superflous warning from vewarn and error when no interface correctly
Diffstat (limited to 'sh')
-rwxr-xr-x | sh/net.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -394,6 +394,12 @@ start() { fi done + if ! _exists ; then + eerror "ERROR: interface ${IFACE} does not exist" + eerror "Ensure that you have loaded the correct kernel module for your hardware" + return 1 + fi + if ! _wait_for_carrier ; then if service_started devd ; then ewarn "no carrier, but devd will start us when we have one" |