3
0
mirror of https://git.launchpad.net/livecd-rootfs synced 2025-03-09 18:31:11 +00:00
livecd-rootfs/minimize-manual

17 lines
419 B
Plaintext
Raw Normal View History

#!/bin/sh
# Minimize the number of manually installed packages in the image
# Finds all packages which could be marked as automatically installed and marks
# them as such
set -e
chroot=$1
auto_packages=$(/usr/share/livecd-rootfs/auto-markable-pkgs $chroot)
if [ -n "$auto_packages" ]; then
chroot chroot apt-mark auto $auto_packages
fi
[ -z "$(/usr/share/livecd-rootfs/auto-markable-pkgs $chroot 2> /dev/null)" ]