aboutsummaryrefslogtreecommitdiffstats
path: root/tools/make-pxeboot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/make-pxeboot.sh')
-rwxr-xr-xtools/make-pxeboot.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/make-pxeboot.sh b/tools/make-pxeboot.sh
deleted file mode 100755
index 86a2a4a..0000000
--- a/tools/make-pxeboot.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash
-#
-# This tool is to be executed by make-base-requires.sh
-# From tg14 we assume that TFTP server/PXE-boot server
-# is the Secondary/SMTP/TFTP box.
-#
-# TODO: Either rewrite this to be run at/from the bootstrapper,
-# and/or add support for ${BASE} redirection..
-
-apt-get -y install tftpd-hpa
-apt-get -y install nfs-kernel-server
-
-cat << END > /etc/default/tftpd-hpa
-TFTP_USERNAME="tftp"
-TFTP_DIRECTORY="/var/lib/tftpboot"
-TFTP_ADDRESS="0.0.0.0:69"
-TFTP_OPTIONS="--secure"
-END
-
-/etc/init.d/tftpd-hpa restart
-
-mkdir -p /var/lib/tftpboot
-
-# NOTE, this step depends on an SCP of basic content from the bootstrap...
-# This should be done by tools/update-tools ...
-cp -R ~/tgmanage/pxe/* /var/lib/tftpboot
-
-~/tgmanage/tools/fetch-debinstall.sh /var/lib/tftpboot/debian
-# tools/fetch-ubuntulive.sh <- this tool does not exist xD
-# NOTE! The pxe/ directory contains an 'ubuntu' menu...
-# The files required to booting Ubuntu installer or live
-# must be fetched manually (for now)