[ Sergio Schvezov ]

removing debian packaging artifacts from the image
ubuntu/yakkety
Sergio Schvezov 10 years ago committed by Sebastien Bacher
commit 6c641f01d2

3
debian/changelog vendored

@ -2,6 +2,9 @@ livecd-rootfs (2.319) UNRELEASED; urgency=medium
* copy set locale hook from core to desktop-next
[ Sergio Schvezov ]
* removing debian packaging artifacts from the image
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 26 Jun 2015 10:40:25 +0200
livecd-rootfs (2.318) wily; urgency=medium

@ -0,0 +1,24 @@
#!/bin/sh
#
# removing debian packaging artifacts
set -ex
echo "I: Removing the debian legacy"
PREFIX=binary/boot/filesystem.dir
# dpkg-deb and dpkg purposefully left behind
(cd $PREFIX
chroot . dpkg --purge apt
rm -r \
var/lib/dpkg \
var/log/apt
rm \
usr/bin/dpkg-query \
usr/bin/dpkg-split \
usr/bin/dpkg-divert \
usr/bin/dpkg-trigger \
usr/bin/dpkg-statoverride \
usr/bin/dpkg-maintscript-helper
)
Loading…
Cancel
Save