Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package avahi for openSUSE:Factory checked in at 2022-09-07 11:05:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/avahi (Old) and /work/SRC/openSUSE:Factory/.avahi.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "avahi" Wed Sep 7 11:05:25 2022 rev:153 rq:1001366 version:0.8 Changes: -------- --- /work/SRC/openSUSE:Factory/avahi/avahi.changes 2022-07-26 19:42:53.853961200 +0200 +++ /work/SRC/openSUSE:Factory/.avahi.new.2083/avahi.changes 2022-09-07 11:05:26.816316591 +0200 @@ -1,0 +2,6 @@ +Sun Sep 4 12:19:08 UTC 2022 - Andreas Stieger <andreas.stie...@gmx.de> + +- avahi-daemon-check-dns.sh: convert obsolete egrep call to grep -E + (boo#1203092) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ avahi-daemon-check-dns.sh ++++++ --- /var/tmp/diff_new_pack.SJlHEW/_old 2022-09-07 11:05:27.564318493 +0200 +++ /var/tmp/diff_new_pack.SJlHEW/_new 2022-09-07 11:05:27.568318503 +0200 @@ -43,7 +43,7 @@ # If there is no local nameserver and no we have no global ip addresses # then we can't reach any nameservers - if ! $(egrep -q "nameserver 127.0.0.1|::1" /etc/resolv.conf); then + if ! $(grep -E -q "nameserver 127.0.0.1|::1" /etc/resolv.conf); then if [ -x "$(which ip)" ]; then ADDRS=$(ip addr show scope global | grep inet) ROUTES=$(ip route show 0.0.0.0/0) @@ -51,7 +51,7 @@ # Get addresses of all running interfaces ADDRS=$(LC_ALL=C ifconfig | grep ' addr:') # Filter out all local addresses - ADDRS=$(echo "${ADDRS}" | egrep -v ':127|Scope:Host|Scope:Link') + ADDRS=$(echo "${ADDRS}" | grep -E -v ':127|Scope:Host|Scope:Link') # Check we have a default route ROUTES=$(route -n | grep '^0.0.0.0 ') fi @@ -76,7 +76,7 @@ # Use timeout when calling host as workaround for LP: #1752411 OUT=`LC_ALL=C timeout 5 host -t soa local. 2>&1` if [ $? -eq 0 ] ; then - if echo "$OUT" | egrep -vq 'has no|not found'; then + if echo "$OUT" | grep -E -vq 'has no|not found'; then return 0 fi else