summaryrefslogtreecommitdiff
path: root/examples/hooks/all_chroot_debian-live-pxe-server.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2011-06-03 10:39:45 +0200
committerDaniel Baumann <daniel@debian.org>2011-06-03 10:39:45 +0200
commit348cb4b391ea151511a077636a112b7399f99088 (patch)
treef2e6e76428552d5dae13ff40907f6a4131a63a7e /examples/hooks/all_chroot_debian-live-pxe-server.sh
parentb8eff5a2f2720dcf8aca9e5c681c32c64207a719 (diff)
downloadvyos-live-build-348cb4b391ea151511a077636a112b7399f99088.tar.gz
vyos-live-build-348cb4b391ea151511a077636a112b7399f99088.zip
Moving 'default' hooks for minimal and stripped to example hooks, they will have to be enabled manually now (Closes: #627183).
Previously, there were a couple of hooks that were automatically run for some image flavours. This came back from the old days when we had to deconfigure gdm and enable kdm explicitly for kde images. After lenny, this hack was not needed anymore, and there's not much sense to keep the mechanism in place at all. Better, let's treat all images the same way wrt/ hooks and don't do special automagics. The only images that is of concern of are minimal and stripped which we don't build by default anyway. This also stopps confusing others.
Diffstat (limited to 'examples/hooks/all_chroot_debian-live-pxe-server.sh')
-rwxr-xr-xexamples/hooks/all_chroot_debian-live-pxe-server.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/hooks/all_chroot_debian-live-pxe-server.sh b/examples/hooks/all_chroot_debian-live-pxe-server.sh
new file mode 100755
index 000000000..4bde28bcb
--- /dev/null
+++ b/examples/hooks/all_chroot_debian-live-pxe-server.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2011 Daniel Baumann <daniel@debian.org>
+##
+## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
+## This is free software, and you are welcome to redistribute it
+## under certain conditions; see COPYING for details.
+
+
+set -e
+
+# Adding symlink in /srv/tftp for debian-installer netboot images
+ARCHITECTURE="$(dpkg --print-architecture)"
+
+rm -rf /srv/tftp
+ln -s /usr/lib/debian-installer/images/${ARCHITECTURE}/text /srv/tftp