Browse Source

Merge pull request #638 from softins/fix-version-report

Prevent listing the complete file if version tag missing
pull/639/head v2.34
Tim Kimber 5 years ago
committed by GitHub
parent
commit
bce73adc07
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      getssl

+ 5
- 4
getssl View File

@ -253,7 +253,8 @@
# 2021-01-22 Add FTP_OPTIONS
# 2021-01-27 Add the ability to set several reload commands (atisne)
# 2021-01-29 Use dig -r (if supported) to ignore.digrc (#630)
# 2021-02-07 Allow -u --upgrade without any domain, so that one can only update the script
# 2021-02-07 Allow -u --upgrade without any domain, so that one can only update the script (2.34)
# 2021-02-09 Prevent listing the complete file if version tag missing (#637)
# ----------------------------------------------------------------------------------------
case :$SHELLOPTS: in
@ -753,10 +754,10 @@ check_getssl_upgrade() { # check if a more recent version of code is available a
fi
if [[ ${_MUTE} -eq 0 ]]; then
echo "Updated getssl from v${VERSION} to v${latestversion}"
echo "these update notification can be turned off using the -Q option"
echo "These update notifications can be turned off using the -Q option"
echo ""
echo "Updates are;"
awk "/\(${VERSION}\)$/ {s=1} s; /\(${latestversion}\)$/ {s=0}" "$TEMP_UPGRADE_FILE" | awk '{if(NR>1)print}'
awk "/\(${VERSION}\)$/ {s=1} s; /\(${latestversion}\)$/ || /^# ----/ {s=0}" "$TEMP_UPGRADE_FILE" | awk '{if(NR>1)print}'
echo ""
fi
if [[ -n "$_KEEP_VERSIONS" ]] && [[ "$_KEEP_VERSIONS" =~ ^[0-9]+$ ]]; then
@ -786,7 +787,7 @@ check_getssl_upgrade() { # check if a more recent version of code is available a
else
info ""
info "A more recent version (v${latestversion}) of getssl is available, please update"
info "the easiest way is to use the -u or --upgrade flag"
info "The easiest way is to use the -u or --upgrade flag"
info ""
fi
fi


Loading…
Cancel
Save