Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hooks: purge packages before creating list of included packages #253

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hooks/600-no-debian.chroot
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ set -ex

echo "I: Removing the debian legacy"

# dpkg-deb and dpkg purposefully left behind
dpkg --purge --force-depends apt libapt-pkg6.0t64 debconf

# store manifest of all installed packages
install -m755 -d usr/share/snappy
dpkg -l > usr/share/snappy/dpkg.list
Expand All @@ -29,9 +32,6 @@ dpkg -l > usr/share/snappy/dpkg.list
dpkg-query -W --showformat='- ${binary:Package}=${Version}\n'
} > /usr/share/snappy/dpkg.yaml

# dpkg-deb and dpkg purposefully left behind
dpkg --purge --force-depends apt libapt-pkg5.0 debconf

rm -r \
var/lib/dpkg \
var/log/apt
Expand Down