diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-07-17 18:54:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-07-17 18:54:00 +0000 |
commit | d413d46018ae22bc9a711ef792234db7674828ee (patch) | |
tree | 1e205ac5a417372793cfad8c10046df63992e6d0 /share/scripts | |
parent | Correcting whitespace error in include handling that broke debconf container ... (diff) | |
download | compute-tools-d413d46018ae22bc9a711ef792234db7674828ee.tar.xz compute-tools-d413d46018ae22bc9a711ef792234db7674828ee.zip |
Cosmetically fixing internal preseed file when using the progress-linux package.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/scripts')
-rwxr-xr-x | share/scripts/debconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/scripts/debconf b/share/scripts/debconf index e12ee9e..67904c0 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -398,7 +398,7 @@ EOF progress-linux) cat > "${DIRECTORY}/progress-linux.cfg" << EOF -progress-linux progress-linux/archives multiselect ${ARCHIVES} +progress-linux progress-linux/archives multiselect $(echo ${ARCHIVES} | sed -e 's| |, |g') progress-linux progress-linux/archive-areas multiselect $(echo ${ARCHIVE_AREAS} | sed -e 's|,| |g') EOF @@ -528,7 +528,7 @@ EOF progress-linux) cat > "${DIRECTORY}/progress-linux.cfg" << EOF -progress-linux progress-linux/archives multiselect ${ARCHIVES} +progress-linux progress-linux/archives multiselect $(echo ${ARCHIVES} | sed -e 's| |, |g') progress-linux progress-linux/archive-areas multiselect $(echo ${ARCHIVE_AREAS} | sed -e 's|,| |g') EOF |