a9b38d0b60
The Ubuntu Xenial cloud server images set the mode of /var/lib/apt/lists/partial to 700, so when mounted it's inaccessible to an unprivileged user, resulting in an error: find: `/tmp/image.aDQKdkRi/mnt/var/lib/apt/lists/partial': Permission denied There's no reason an image should come with anything already in /var/lib/apt/lists/partial, so just avoid trying to descend into that directory when fixing the apt translations packages. Change-Id: Id27f0166bfb09d67200f337a5ffff2f2037b7c1c
18 lines
486 B
Bash
Executable File
18 lines
486 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
[ -n "$TARGET_ROOT" ]
|
|
|
|
# Configure APT not to fetch translations files
|
|
sudo dd of=$TARGET_ROOT/etc/apt/apt.conf.d/95no-translations <<EOF
|
|
Acquire::Languages "none";
|
|
EOF
|
|
|
|
# And now make sure that we don't fall foul of Debian bug 641967
|
|
find $TARGET_ROOT/var/lib/apt/lists/ -path $TARGET_ROOT/var/lib/apt/lists/partial -prune -o -type f -name '*_i18n_Translation-*' -print -exec sudo rm -f {} +
|