I do not know of any repo with zoom in it. I use a script like this to install zoom updates: #!/bin/bash URL="" href="https://zoom.us/client/latest/zoom_x86_64.rpm" class="">https://zoom.us/client/latest/zoom_x86_64.rpm cd ~/Downloads rm -f zoom_x86_64.rpm curl --location --remote-name --silent --show-error ${URL} INSTALLED=$(rpm -q zoom) LATEST=$(rpm -qp zoom_x86_64.rpm) if [ "${INSTALLED}" = "${LATEST}" ] then echo "Info: Zoom is up to date. Version: ${INSTALLED}" else echo "Info: There is a new version of zoom. Installed ${INSTALLED} latest ${LATEST}" mv zoom_x86_64.rpm ${LATEST}.rpm if [ "$1" = "--install" ] then echo "Installing new Zoom version" sudo dnf install ~${USER}/Downloads/${LATEST}.rpm fi fi Outputs this when there is no new update: $ ./check-for-zoom-updates.sh warning: zoom_x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 61a7c71d: NOKEY Info: Zoom is up to date. Version: zoom-5.7.28991.0726-1.x86_64 |
_______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure