diff options
author | Jonas Smedegaard <dr@jones.dk> | 2014-07-30 11:50:21 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2014-07-30 11:50:21 +0200 |
commit | 8721b1978656c5daee03e57995395f74a8a5ed5f (patch) | |
tree | 6742beb301bb3ea501ea1fea71fcf12007f1be44 /tweaks | |
parent | 80f4de62bddc6fa11d812567d987dde8d846b462 (diff) |
Fix failure installing via script on (very) minimal system: Install apt-utils before other packages, to ensure dictionaries-common can do its trick of postponing configuration till after a wordlist exist (bug#751367).
Diffstat (limited to 'tweaks')
-rw-r--r-- | tweaks/base | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tweaks/base b/tweaks/base index eba954a..9c2811d 100644 --- a/tweaks/base +++ b/tweaks/base @@ -18,8 +18,8 @@ _pkganddeepdeps(){ set -e echo $all|sed -r 's/\s+/\n/g'|sort -u; } essentials=$(chroot /target dpkg-query -Wf='${Package}%${Essential}\n'|sed -r 's/(.*)%yes/\1/;/%/d') chroot /target apt-mark auto $(_pkganddeepdeps $essentials apt linux-image-*) -# fix mark auto-installed d-i installed packages unusable on their own -chroot /target apt-mark auto aptitude-common grub-common isc-dhcp-common tasksel-data vim-common +# fix mark auto-installed misc. packages relevant only as dependencies +chroot /target apt-mark auto apt-utils aptitude-common grub-common isc-dhcp-common tasksel-data vim-common # keep backup of any tweaked (i.e. edited or created) config file _backup(){ set -e |