Skip to content

Instantly share code, notes, and snippets.

@morxa
Last active June 6, 2024 14:23
Show Gist options
  • Save morxa/36d1b444e80cf0bb94be75bcc454f2fe to your computer and use it in GitHub Desktop.
Save morxa/36d1b444e80cf0bb94be75bcc454f2fe to your computer and use it in GitHub Desktop.
Fedora Zoom auto update

To install:

  1. Copy both services to /etc/systemd/system/
  2. Enable with sudo systemctl enable --now zoom-update.timer
[Unit]
Description=Install latest version of Zoom
ConditionACPower=true
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
ExecStart=/usr/bin/dnf install -y https://zoom.us/client/latest/zoom_x86_64.rpm
[Unit]
Description=Run Zoom update daily
[Timer]
OnCalendar=daily
Persistent=true
[Install]
WantedBy=multi-user.target
@gilsondev
Copy link

gilsondev commented Dec 8, 2021

A little fixes:

[Unit]
Description=Install latest version of Zoom
ConditionACPower=true
After=network-online.target
Wants=network-online.target

[Service]
Type=simple
ExecStart=/usr/bin/dnf install -y https://zoom.us/client/latest/zoom_x86_64.rpm

[Install]
WantedBy=multi-user.target
[Unit]
Description=Run Zoom update daily

[Timer]
OnCalendar=daily
Persistent=true

[Install]
WantedBy=timers.target

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment