bab9595524
The dpkg element was hardcoding ~/.cache/image-create as the cache path, but elements should use DIB_IMAGE_CACHE as the root for the cache to allow users to override the path. Replace the hardcoded path with one that is rooted at $DIB_IMAGE_CACHE. Change-Id: I76030654e7dfc7b7d4dfa87e082c14e7cee479b9
17 lines
321 B
Bash
Executable File
17 lines
321 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
DIB_APT_LOCAL_CACHE=${DIB_APT_LOCAL_CACHE:-1}
|
|
|
|
if [ $DIB_APT_LOCAL_CACHE = "0" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
apt_cache_dir=$DIB_IMAGE_CACHE/apt/$DISTRO_NAME
|
|
if [ ! -d $apt_cache_dir ]; then
|
|
mkdir -p $apt_cache_dir
|
|
fi
|
|
sudo mount --bind $apt_cache_dir $TARGET_ROOT/var/cache/apt/archives
|