From 2e85f9325a797977eea9dfea0a925775ddd211d9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Feb 2021 12:49:00 +0100 Subject: Merging upstream version 1.29.0. Signed-off-by: Daniel Baumann --- collectors/tc.plugin/tc-qos-helper.sh.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'collectors/tc.plugin/tc-qos-helper.sh.in') diff --git a/collectors/tc.plugin/tc-qos-helper.sh.in b/collectors/tc.plugin/tc-qos-helper.sh.in index 50555c8b2..65d33153b 100755 --- a/collectors/tc.plugin/tc-qos-helper.sh.in +++ b/collectors/tc.plugin/tc-qos-helper.sh.in @@ -211,7 +211,7 @@ show_fireqos_names() { if [ -f "${fireqos_run_dir}/ifaces/${x}" ]; then name="$(<"${fireqos_run_dir}/ifaces/${x}")" - echo "SETDEVICENAME ${name}" + echo "SETDEVICENAME ${name}" || exit #shellcheck source=/dev/null source "${fireqos_run_dir}/${name}.conf" @@ -219,7 +219,7 @@ show_fireqos_names() { # shellcheck disable=SC2086 setclassname ${n//|/ } done - [ -n "${interface_dev}" ] && echo "SETDEVICEGROUP ${interface_dev}" + [ -n "${interface_dev}" ] && echo "SETDEVICEGROUP ${interface_dev}" || exit return 0 fi @@ -230,7 +230,7 @@ show_fireqos_names() { show_tc() { local x="${1}" - echo "BEGIN ${x}" + echo "BEGIN ${x}" || exit # netdata can parse the output of tc ${tc} -s ${tc_show} show dev "${x}" @@ -240,7 +240,7 @@ show_tc() { show_fireqos_names "${x}" || show_tc_cls "${x}" fi - echo "END ${x}" + echo "END ${x}" || exit } find_tc_devices() { @@ -289,7 +289,7 @@ while true; do show_tc "${d}" done - echo "WORKTIME ${LOOPSLEEPMS_LASTWORK}" + echo "WORKTIME ${LOOPSLEEPMS_LASTWORK}" || exit loopsleepms ${update_every} -- cgit v1.2.3