diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2017-01-28 21:38:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2017-04-03 10:09:13 +0000 |
commit | 67ed26b29d2b61c6146c7073f0b825fcf6a85aaa (patch) | |
tree | fefb4843e7edf99967e9eac7d78458eb8132eeb7 /share/scripts/debconf | |
parent | Cleanup stray preseed.cfg removal. (diff) | |
download | compute-tools-67ed26b29d2b61c6146c7073f0b825fcf6a85aaa.tar.xz compute-tools-67ed26b29d2b61c6146c7073f0b825fcf6a85aaa.zip |
Allowing @NAME@ variable in preseed files to allow for more flexibel preseed templating.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/scripts/debconf')
-rwxr-xr-x | share/scripts/debconf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/scripts/debconf b/share/scripts/debconf index 64d8b8f..6d0410a 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -622,7 +622,7 @@ EOF then for FILE in ${PRESEED_FILE} do - cat "${FILE}" >> "${DIRECTORY}/preseed.cfg" + sed -e "s|@NAME@|${NAME}|g" "${FILE}" >> "${DIRECTORY}/preseed.cfg" done Chroot "${DIRECTORY}" "debconf-set-selections preseed.cfg" |