diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2014-11-09 22:15:13 +0100 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2014-11-09 22:15:13 +0100 |
commit | 315513c30f78de7e38f74cee9ec02c47a2e233ba (patch) | |
tree | ffb2ec2ecf5b0be4619df30cf012f33396831954 | |
parent | d5edecac8ad4596fda96bbcedae3b7d7cdc4e30d (diff) |
Avoid installing eatmydata recommends to reduce disk footprint.
-rwxr-xr-x | bin/freedombox-customize | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/freedombox-customize b/bin/freedombox-customize index 18cf93a..0f903bc 100755 --- a/bin/freedombox-customize +++ b/bin/freedombox-customize @@ -17,7 +17,7 @@ set -e set -x enable_eatmydata_override() { - chroot $rootdir apt-get install -y eatmydata + chroot $rootdir apt-get install --no-install-recommends -y eatmydata if [ -x $rootdir/usr/bin/eatmydata ] && \ [ ! -f $rootdir/etc/apt/apt.conf.d/95debian-edu-install-dpkg-eatmydata ]; then echo "info: Adding apt config to call dpkg via eatmydata" |