|
# Why ? How ?
Basically, I've explained all of this in the project repository README
file.
I strongly think updating packages at boot time is important for
workstation users, so the process has to be done fast and efficiently,
without requiring user agreement (by setting this up, the sysadmin
agreed).
As for servers, it could be useful to by running this a few time a day
and using checkrestart program to notify the admin if some process is
required to restart after an update.
# Whole setup
Too long, didn't read? Here the code to make the thing up!
```shell code
$ su -
# git clone https://tildegit.org/solene/pkgupdate.git
# cp pkgupdate/pkgupdate /usr/local/bin/
# crontab -e (which will open EDITOR, add the following lines)
### BEGIN this goes into crontab
# for updating on boot
@reboot /usr/local/bin/pkgupdate
### END of this goes into crontab
``` |