diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-05-09 12:29:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-05-09 12:29:44 +0000 |
commit | 7a63e0abf545c70e53a2eac6d0261f30660dc595 (patch) | |
tree | ac5bb9e99c7bd76b655cfff9273f34ac3512494f /share/build-scripts | |
parent | Releasing version 20220508. (diff) | |
download | compute-tools-7a63e0abf545c70e53a2eac6d0261f30660dc595.tar.xz compute-tools-7a63e0abf545c70e53a2eac6d0261f30660dc595.zip |
Correcting wrong preseed-file handling for new links directory in container build script.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/build-scripts')
-rwxr-xr-x | share/build-scripts/debconf.d/0001-preseed-file | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/build-scripts/debconf.d/0001-preseed-file b/share/build-scripts/debconf.d/0001-preseed-file index 8e90943..aa2c3c7 100755 --- a/share/build-scripts/debconf.d/0001-preseed-file +++ b/share/build-scripts/debconf.d/0001-preseed-file @@ -57,7 +57,7 @@ elif [ -e "${DEBCONF}/links/${NAME}.cfg" ] then # user did not specify a pressed file, but there is a matching one # in /etc/${SOFTWARE}/debconf/links directory - db_set container/preseed-file "${DEBCONF}/${NAME}.cfg" + db_set container/preseed-file "${DEBCONF}/links/${NAME}.cfg" db_fset container/preseed-file seen true elif [ "$(ls ${DEBCONF}/*/${NAME}.cfg 2>/dev/null | wc -l)" -eq 1 ] then |