Here are some maintenance/repair thingies
Forcing triggers
sudo usysconf run -f
Rebuilding eopkg database
sudo eopkg -y rdb
Repairing broken packages
sudo eopkg check|grep Broken|awk '{print $4}'|xargs sudo eopkg -y it --reinstall
Updating all packages
sudo eopkg -y up
Updating snap packages
sudo snap refresh
Updating flatpak packages
sudo flatpak update
Vacuuming journal
sudo journalctl --vacuum-time=2d
Deleting eopkg cache
sudo eopkg dc
Automatic upgrades
/etc/systemd/system/eopkgup.service
[Unit]
Description=Do all package upgrades
[Service]
Type=oneshot
ExecStart=/usr/bin/eopkg up -y
/etc/systemd/system/eopkgup.timer
[Timer]
OnBootSec=10min
OnUnitActiveSec=12h
Unit=eopkgup.service
[Install]
WantedBy=multi-user.target
Automatic third-party upgrades
sudo pip3 install eopkg3p
sudo eopkg install git
/etc/systemd/system/eopkg3pup.service
[Unit]
Description=Do all 3rd-party package upgrades
[Service]
Type=oneshot
ExecStart=/usr/bin/eopkg3p up -y
/etc/systemd/system/eopkg3pup.timer
[Timer]
OnBootSec=20min
OnUnitActiveSec=10h
Unit=eopkg3pup.service
[Install]
WantedBy=multi-user.target