mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
upgrades: Clean up old kernel packages during automatic upgrades
The unattended-upgrades package removes older kernel packages before starting the upgrade process, so that the current kernel and the newly installed kernel will be retained and all older kernel packages will be removed. The removal of older kernel packages requires "apt autoremove" to list them. So, a setting to enable autoremoval of packages has been turned on as well. When tested on a vagrant box, the current kernel 4.17.0.1 and the new kernel 4.17.0.3 have been retained. Older kernels were removed preemptively before the installation of 4.17.0.3 Fixes #1372 Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
3c4b254909
commit
0583787a68
7
data/etc/apt/apt.conf.d/60unattended-upgrades
Normal file
7
data/etc/apt/apt.conf.d/60unattended-upgrades
Normal file
@ -0,0 +1,7 @@
|
||||
// Remove unused automatically installed kernel-related packages
|
||||
// (kernel images, kernel headers and kernel version locked tools).
|
||||
Unattended-Upgrade::Remove-Unused-Kernel-Packages "true";
|
||||
|
||||
// Do automatic removal of new unused dependencies after the upgrade
|
||||
// (equivalent to apt-get autoremove)
|
||||
Unattended-Upgrade::Remove-Unused-Dependencies "true";
|
||||
2
setup.py
2
setup.py
@ -233,6 +233,8 @@ setuptools.setup(
|
||||
glob.glob('data/etc/apache2/sites-available/*.conf')),
|
||||
('/etc/apache2/includes',
|
||||
glob.glob('data/etc/apache2/includes/*.conf')),
|
||||
('/etc/apt/apt.conf.d',
|
||||
glob.glob('data/etc/apt/apt.conf.d/60unattended-upgrades')),
|
||||
('/etc/avahi/services/',
|
||||
glob.glob('data/etc/avahi/services/*.service')),
|
||||
('/etc/ikiwiki',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user