summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorSamuel Thibault <sthibault@debian.org>2017-04-09 20:07:29 +0000
committerSamuel Thibault <sthibault@debian.org>2017-04-09 20:07:29 +0000
commit5eae232e609287e1bcfe976fe21df14a0fb901ac (patch)
tree78792ab66705e9b696e15670adf45da8a7551e97 /build
parent2f0a716e09e19ee1a43c0b3c112a2f39262de668 (diff)
downloadinstallation-guide-5eae232e609287e1bcfe976fe21df14a0fb901ac.zip
Add header to preseed file. Closes: #859438
Diffstat (limited to 'build')
-rwxr-xr-xbuild/build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/build.sh b/build/build.sh
index 8aa65553e..77ac9539d 100755
--- a/build/build.sh
+++ b/build/build.sh
@@ -59,7 +59,8 @@ PRESEED="../en/appendix/preseed.xml"
if [ -f $PRESEED ] && [ -f preseed.pl ] ; then
for arch in $architectures; do
eval arch_destination=$destination
- ./preseed.pl -r $manual_release $PRESEED >$arch_destination/example-preseed.txt
+ echo '#_preseed_V1' >$arch_destination/example-preseed.txt
+ ./preseed.pl -r $manual_release $PRESEED >>$arch_destination/example-preseed.txt
done
fi