"$@" |& tee "$RUN_OUT"
}
-monitor_check_rr() {
+monitor_check_rr() (
+ set +x
+ set +o pipefail
local match="${1:?}"
# Wait until the first mention of the specified log message is
# displayed. We turn off pipefail for this, since we don't care about the
# lhs of this pipe expression, we only care about the rhs' result to be
# clean
- set +o pipefail
journalctl -u resmontest.service -f --full | grep -m1 "$match"
- set -o pipefail
-}
+)
# Test for resolvectl, resolvconf
systemctl unmask systemd-resolved.service