Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fonehome for openSUSE:Factory checked in at 2021-06-23 17:38:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fonehome (Old) and /work/SRC/openSUSE:Factory/.fonehome.new.2625 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fonehome" Wed Jun 23 17:38:13 2021 rev:12 rq:901367 version:1.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/fonehome/fonehome.changes 2021-06-19 23:03:27.139709426 +0200 +++ /work/SRC/openSUSE:Factory/.fonehome.new.2625/fonehome.changes 2021-06-23 17:38:16.456474966 +0200 @@ -1,0 +2,7 @@ +Tue Jun 22 17:35:12 UTC 2021 - Archie Cobbs <archie.co...@gmail.com> + +- Upgrade to version 1.2.1 + + Substitute spaces for newlines when logging errors + + Fixed quoting issues in fhssh(1) and fhscp(1) + +------------------------------------------------------------------- Old: ---- fonehome-1.2.0.tar.gz New: ---- fonehome-1.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fonehome.spec ++++++ --- /var/tmp/diff_new_pack.L6qG3K/_old 2021-06-23 17:38:17.004475720 +0200 +++ /var/tmp/diff_new_pack.L6qG3K/_new 2021-06-23 17:38:17.008475726 +0200 @@ -42,7 +42,7 @@ %define authkeys_options no-X11-forwarding,no-agent-forwarding,no-pty,permitopen="0.0.0.0:9",command="sleep 99999d" Name: fonehome -Version: 1.2.0 +Version: 1.2.1 Release: 0 Summary: Remote access to machines behind firewalls License: Apache-2.0 ++++++ fonehome-1.2.0.tar.gz -> fonehome-1.2.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fonehome-1.2.0/CHANGES new/fonehome-1.2.1/CHANGES --- old/fonehome-1.2.0/CHANGES 2021-06-15 21:35:24.437389705 +0200 +++ new/fonehome-1.2.1/CHANGES 2021-06-22 19:29:09.000000000 +0200 @@ -1,3 +1,8 @@ +Version 1.2.1 Released June 22, 2021 + + - Substitute spaces for newlines when logging errors + - Fixed quoting issues in fhssh(1) and fhscp(1) + Version 1.2.0 Released June 15, 2021 - Added bash(1) completion scripts for fhssh(1) and fhscp(1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fonehome-1.2.0/src/scripts/fhssh.sh new/fonehome-1.2.1/src/scripts/fhssh.sh --- old/fonehome-1.2.0/src/scripts/fhssh.sh 2021-06-15 21:35:24.441389710 +0200 +++ new/fonehome-1.2.1/src/scripts/fhssh.sh 2021-06-22 19:29:09.000000000 +0200 @@ -17,7 +17,7 @@ # Find machine in ports file find_machine() { - for ARG in ${PARAMETERS[@]}; do + for ARG in "${PARAMETERS[@]}"; do for MACHINE in ${@}; do PATTERN="^([^@]+@)?${MACHINE/./\.}(:.*)?$" if [[ "${ARG}" =~ ${PATTERN} ]]; then @@ -56,7 +56,7 @@ # Edit parameters I=0 -for ARG in ${PARAMETERS[@]}; do +for ARG in "${PARAMETERS[@]}"; do PATTERN="^([^@]+@)?${MACHINE/./\.}(:.*)?$" if [[ "${ARG}" =~ ${PATTERN} ]]; then PARAMETERS[$I]="${ARG/${MACHINE}/127.0.0.1}" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fonehome-1.2.0/src/scripts/fonehome.sh new/fonehome-1.2.1/src/scripts/fonehome.sh --- old/fonehome-1.2.0/src/scripts/fonehome.sh 2021-06-15 21:35:24.441389710 +0200 +++ new/fonehome-1.2.1/src/scripts/fonehome.sh 2021-06-22 19:29:09.000000000 +0200 @@ -198,7 +198,7 @@ -oServerAliveInterval=60 -oServerAliveCountMax=5 -oTCPKeepAlive=yes \ -oCheckHostIP=no -i "${KEY_FILE[$INDEX]}" ${SSH_FLAGS[$INDEX]} "${USERNAME[$INDEX]}"@"${SERVER[$INDEX]}" >"${OUTPUT_FILE}" 2>&1 if [ -s "${OUTPUT_FILE}" ]; then - log warn "connection to ${SERVER[$INDEX]} failed: `cat \"${OUTPUT_FILE}\"`" + log warn "connection to ${SERVER[$INDEX]} failed: `cat \"${OUTPUT_FILE}\" | tr \\\\n ' '`" else log warn "connection to ${SERVER[$INDEX]} failed" fi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fonehome-1.2.0/src/unit/fonehome.service new/fonehome-1.2.1/src/unit/fonehome.service --- old/fonehome-1.2.0/src/unit/fonehome.service 2021-06-15 21:35:24.441389710 +0200 +++ new/fonehome-1.2.1/src/unit/fonehome.service 2021-06-22 19:29:09.000000000 +0200 @@ -1,5 +1,6 @@ [Unit] Description=fonehome daemon +Documentation=man:fonehome(1) Documentation=https://github.com/archiecobbs/fonehome After=network.target syslog.socket