mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Revise list of installed packages in mkimage-arch.sh
Docker-DCO-1.1-Signed-off-by: Zoltan Tombol <zoltan.tombol@gmail.com> (github: ztombol)
This commit is contained in:
parent
6e5c5d33dd
commit
9f59b057be
1 changed files with 26 additions and 1 deletions
|
@ -18,7 +18,32 @@ ROOTFS=$(mktemp -d ${TMPDIR:-/var/tmp}/rootfs-archlinux-XXXXXXXXXX)
|
||||||
chmod 755 $ROOTFS
|
chmod 755 $ROOTFS
|
||||||
|
|
||||||
# packages to ignore for space savings
|
# packages to ignore for space savings
|
||||||
PKGIGNORE=linux,jfsutils,lvm2,cryptsetup,groff,man-db,man-pages,mdadm,pciutils,pcmciautils,reiserfsprogs,s-nail,xfsprogs
|
PKGIGNORE=(
|
||||||
|
cryptsetup
|
||||||
|
device-mapper
|
||||||
|
dhcpcd
|
||||||
|
iproute2
|
||||||
|
jfsutils
|
||||||
|
linux
|
||||||
|
lvm2
|
||||||
|
man-db
|
||||||
|
man-pages
|
||||||
|
mdadm
|
||||||
|
nano
|
||||||
|
netctl
|
||||||
|
openresolv
|
||||||
|
pciutils
|
||||||
|
pcmciautils
|
||||||
|
reiserfsprogs
|
||||||
|
s-nail
|
||||||
|
systemd-sysvcompat
|
||||||
|
usbutils
|
||||||
|
vi
|
||||||
|
xfsprogs
|
||||||
|
)
|
||||||
|
IFS=','
|
||||||
|
PKGIGNORE="${PKGIGNORE[*]}"
|
||||||
|
unset IFS
|
||||||
|
|
||||||
expect <<EOF
|
expect <<EOF
|
||||||
set send_slow {1 .1}
|
set send_slow {1 .1}
|
||||||
|
|
Loading…
Reference in a new issue