mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-14 14:48:25 +00:00
debootstrap doesn't respect --exclude for "Priority: required" packages, so we have to purge makedev later. LP: #1844504
8 lines
221 B
Bash
Executable File
8 lines
221 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
# makedev is "Priority: required" in xenial and so unavoidably installed by
|
|
# debootstrap, but it isn't truly required and has historically been
|
|
# excluded from buildd chroots.
|
|
apt-get -y purge makedev
|