Skip to content

Commit

Permalink
* debian/apt.conf.autoremove: don't include linux-image*,
Browse files Browse the repository at this point in the history
  linux-restricted-modules*, and linux-ubuntu-modules* packages in the
  list to never be autoremoved.
* debian/apt.auto-removal.sh, debian/rules, debian/apt.dirs: install new
  script to /etc/kernel/postinst.d/ which ensures we only automatically
  keep the currently-running kernel, the being-installed kernel, and the
  newest kernel, so we don't fill /boot up with an unlimited number of
  kernels.  LP: #923876.
  • Loading branch information
vorlonofportland committed Nov 2, 2012
1 parent f69b2c3 commit 39a07ec
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 3 deletions.
67 changes: 67 additions & 0 deletions debian/apt.auto-removal.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#!/bin/sh

set -e

# Author: Steve Langasek <steve.langasek@canonical.com>
#
# Mark as not-for-autoremoval those kernel packages that are:
# - the currently booted version
# - the kernel version we've been called for
# - the latest kernel version (determined using rules copied from the grub
# package for deciding which kernel to boot)
# In the common case, this results in exactly two kernels saved, but it can
# result in three kernels being saved. It's better to err on the side of
# saving too many kernels than saving too few.
#
# We generate this list and save it to /etc/apt/apt.conf.d instead of marking
# packages in the database because this runs from a postinst script, and apt
# will overwrite the db when it exits.

config_file=/etc/apt/apt.conf.d/01autoremove-kernels

installed_version="$1"
running_version="$(uname -r)"


version_test_gt ()
{
local version_test_gt_sedexp="s/[._-]\(pre\|rc\|test\|git\|old\|trunk\)/~\1/g"
local version_a="`echo "$1" | sed -e "$version_test_gt_sedexp"`"
local version_b="`echo "$2" | sed -e "$version_test_gt_sedexp"`"
dpkg --compare-versions "$version_a" gt "$version_b"
return "$?"
}

list=$(dpkg -l 'linux-image-[0-9]*'|awk '/^ii/ { print $2 }' | sed -e's/linux-image-//')

latest_version=""
for i in $list; do
if version_test_gt "$i" "$latest_version"; then
latest_version="$i"
fi
done

kernels=$(sort -u <<EOF
$latest_version
$installed_version
$running_version
EOF
)

cat > "$config_file".dpkg-new <<EOF
# File autogenerated by $0, do not edit
APT
{
NeverAutoRemove
{
EOF
for kernel in $kernels; do
echo " \"^linux-image-$kernel.*\";" >> "$config_file".dpkg-new
echo " \"^linux-image-extra-$kernel.*\";" >> "$config_file".dpkg-new
echo " \"^linux-signed-image-$kernel.*\";" >> "$config_file".dpkg-new
done
cat >> "$config_file".dpkg-new <<EOF
};
};
EOF
mv "$config_file".dpkg-new "$config_file"
3 changes: 0 additions & 3 deletions debian/apt.conf.autoremove
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ APT
{
"^firmware-linux.*";
"^linux-firmware$";
"^linux-image.*";
"^kfreebsd-image.*";
"^linux-restricted-modules.*";
"^linux-ubuntu-modules-.*";
"^gnumach$";
"^gnumach-image.*";
};
Expand Down
1 change: 1 addition & 0 deletions debian/apt.dirs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ etc/apt/apt.conf.d
etc/apt/preferences.d
etc/apt/sources.list.d
etc/apt/trusted.gpg.d
etc/kernel/postinst.d
etc/logrotate.d
var/cache/apt/archives/partial
var/lib/apt/lists/partial
Expand Down
13 changes: 13 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,19 @@ apt (0.9.7.6) unstable; urgency=low

-- Michael Vogt <mvo@debian.org> Tue, 16 Oct 2012 18:08:53 +0200

apt (0.9.7.5ubuntu6) UNRELEASED; urgency=low

* debian/apt.conf.autoremove: don't include linux-image*,
linux-restricted-modules*, and linux-ubuntu-modules* packages in the
list to never be autoremoved.
* debian/apt.auto-removal.sh, debian/rules, debian/apt.dirs: install new
script to /etc/kernel/postinst.d/ which ensures we only automatically
keep the currently-running kernel, the being-installed kernel, and the
newest kernel, so we don't fill /boot up with an unlimited number of
kernels. LP: #923876.

-- Steve Langasek <steve.langasek@ubuntu.com> Fri, 02 Nov 2012 23:13:00 +0000

apt (0.9.7.5ubuntu5) quantal; urgency=low

* Revert "missing remap registration" change from 0.9.7.5ubuntu4; this
Expand Down
2 changes: 2 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ apt: build build-manpages
#
cp debian/apt.conf.autoremove debian/$@/etc/apt/apt.conf.d/01autoremove
cp debian/apt.conf.changelog debian/$@/etc/apt/apt.conf.d/20changelog
cp debian/apt.auto-removal.sh debian/$@/etc/kernel/postinst.d/apt-auto-removal
chmod 755 debian/$@/etc/kernel/postinst.d/apt-auto-removal
cp share/ubuntu-archive.gpg debian/$@/usr/share/$@

# make rosetta happy and remove pot files in po/ (but leave stuff
Expand Down

0 comments on commit 39a07ec

Please sign in to comment.