You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Solene Rapenne e0083083be use uname -p instead of machine
on some archictures such as arm64, you have a different platform than
machine name like arm64 vs aarch64

reported by Aaron Riekenberg
9 months ago
LICENSE init 2 years ago
Makefile add makefile to ease installation 1 year ago
README.md README: mention the Makefile installation 1 year ago
pkgupdate use uname -p instead of machine 9 months ago

README.md

Presentation

pkgupdate is a simple shell script meant for OpenBSD users to easily keep their packages up to date the fastest possible.

It is meant to be run daily by cron on servers on at boot time for workstations.

Usage

pkgupdate has only one flag -q to hide successful messages, preventing to send an email from cron scripts if it worked.

How?

pkgupdate uses 3 tricks to speed up the process, this is particularily important for workstations updating during the boot process:

  • fetch the index of packages and compare it between runs (using a cache in /var/cache/pkgupdate/)
  • if the index changed, which mean everytime a new package is updated, then it only try to update the packages available in the packages-stable directory
  • if curl is installed, use curl instead of ftp(1) command (because pkg_add is more efficient with curl)

Why?

This tool is based on solene@ previous work faster packages updates and pkg_add performance analysis.

In my opinion, workstations should be updated as soon as possible, at boot time, to update packages at boot before using anything from the user session, avoiding a boring reboot.

As for servers, making the process faster is always welcome.

Setup

First, use git clone https://tildegit.org/solene/pkgupdate.git and run make install as root to install /usr/local/bin/pkgupdate.

Best way to manage this is to use root's crontab. As root, type crontab -e to edit its tab.

# for updating on boot
@reboot /usr/local/bin/pkgupdate

# for updating every hour
@hourly /usr/local/bin/pkgupdate

# for updating every 6 hours
0 */6 * * * /usr/local/bin/pkgupdate