diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-03-29 16:17:27 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-03-29 16:17:27 -0700 |
commit | dab4e6ebfa43ef7b60eaedb2002cc4724c123d52 (patch) | |
tree | bce63152abac5a46142070ca767b064d50838825 | |
parent | 6d34fc3ffcbce8c37dba92d21b7a8a83d7805196 (diff) | |
parent | e110a69d6217a6a9fa7bc87bb7ff2a60cda152fa (diff) | |
download | vyatta-cfg-qos-dab4e6ebfa43ef7b60eaedb2002cc4724c123d52.tar.gz vyatta-cfg-qos-dab4e6ebfa43ef7b60eaedb2002cc4724c123d52.zip |
Merge branch 'larkspur' of vm:git/vyatta-cfg-qos into larkspur
-rwxr-xr-x | scripts/vyatta-qos.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-qos.pl b/scripts/vyatta-qos.pl index e5ea69a..6fc38dc 100755 --- a/scripts/vyatta-qos.pl +++ b/scripts/vyatta-qos.pl @@ -179,7 +179,7 @@ sub update_interface { system("sudo ip link add dev $ifb type ifb") == 0 or die "Can't create $ifb: $!"; - system("sudo ip link set dev $ifb up") + system("sudo ip link set dev $ifb up") == 0 or die "Can't bring $ifb up: $!"; print "qdisc add dev $device ingress\n"; |