summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Wansing <hwansing@mailbox.org>2020-01-12 22:19:44 +0100
committerHolger Wansing <hwansing@mailbox.org>2020-01-12 22:19:44 +0100
commite576effd6d84b80fc0879618e5db75a98beb5ce1 (patch)
tree4fa9f178a8c55e4c69340ac6da88605d44deb27d
parentb95084b830ec4cb93ff3d61035b2bd3018f9b1d9 (diff)
downloadinstallation-guide-e576effd6d84b80fc0879618e5db75a98beb5ce1.zip
Also add the '#_preseed_V1' header, when building the example-preseed.txt for the website, as it is already in the binary packages
-rwxr-xr-xbuild/buildweb.sh3
-rw-r--r--debian/changelog2
2 files changed, 4 insertions, 1 deletions
diff --git a/build/buildweb.sh b/build/buildweb.sh
index 6b9091cd8..f309d45fe 100755
--- a/build/buildweb.sh
+++ b/build/buildweb.sh
@@ -52,7 +52,8 @@ make languages="$languages" architectures="$architectures" destination="$destina
PRESEED="../en/appendix/preseed.xml"
if [ -f $PRESEED ] && [ -f preseed.pl ] ; then
- ./preseed.pl -r $manual_release $PRESEED >$destination/example-preseed.txt
+ echo '#_preseed_V1' >$destination/example-preseed.txt
+ ./preseed.pl -r $manual_release $PRESEED >>$destination/example-preseed.txt
fi
# Delete temporary PO files and generated XML files
diff --git a/debian/changelog b/debian/changelog
index 8fc4e11b7..c2e9552a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
installation-guide (20200110) UNRELEASED; urgency=medium
* Show a build version within the manual, parsed from debian/changelog.
+ * Also add the '#_preseed_V1' header, when building the example-preseed.txt
+ for the website, as it is already in the binary packages.
-- Holger Wansing <hwansing@mailbox.org> Fri, 10 Jan 2020 23:21:11 +0100