Don't try to put on hold non-installed packages

Fixes #24
merge-requests/16/head
Raphaël Hertzog 4 years ago
parent e0dc0da671
commit 426ea9ff6d
No known key found for this signature in database
GPG Key ID: 03881DABEBC29AB9

@ -26,7 +26,7 @@ fi
# Mark kernel related packages on hold so that they are not upgraded in
# the live system
for pkg in $(dpkg-query -W -f'${binary:Package}\n' 'linux-image-*' 'linux-headers-*' 'linux-kbuild-*')
for pkg in $(dpkg-query -W -f'${db:Status-Status} ${binary:Package}\n' 'linux-image-*' 'linux-headers-*' 'linux-kbuild-*' | sed -ne 's/^installed //p')
do
apt-mark hold $pkg
done

Loading…
Cancel
Save