Linux
Service systemd
Create /etc/systemd/system/Updater.service
[Unit]
Description=burunya
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/SomeUpdater
Restart=always
RestartSec=60
[Install]
WantedBy=multi-user.targetThen
systemctl daemon-reload
systemctl enable Updater.service
systemctl start Updater.serviceLast updated