Skip to content
Commits on Source (2)
debian-edu-config (2.10.63) UNRELEASED; urgency=medium
* Adjust sbin/debian-edu-pxeinstall. (Closes: #924927)
- Set d-i version to 10, now that debian-installer-10-netboot is in Buster.
- Replace code to determine the distribution so that it also works offline.
-- Wolfgang Schweer <wschweer@arcor.de> Mon, 18 Mar 2019 15:21:39 +0100
debian-edu-config (2.10.62) unstable; urgency=medium
* get-ldap-ltsp-config: Fix detection of MAC address.
......
......@@ -53,7 +53,7 @@ if [ -f /etc/environment ] ; then
. /etc/environment
fi
[ "$dist" ] || dist=$(lsb_release -sc)
[ "$dist" ] || dist=$(cat /etc/debian_version | cut -d'/' -f1)
[ "$archs" ] || archs="amd64 i386"
[ "$ltsparch" ] || ltsparch=$(dpkg --print-architecture)
[ "$mirrorurl" ] || mirrorurl=http://deb.debian.org/debian
......@@ -133,7 +133,7 @@ for arch in $archs ; do
[ -d $tftpdir/debian-installer ] || \
mkdir $tftpdir/debian-installer
cd $tftpdir/debian-installer
di_ver=9
di_ver=10
tarball=""
if [ -d /usr/lib/debian-installer/images/$di_ver/$arch ]; then
di_img_dir="/usr/lib/debian-installer/images/$di_ver/$arch"
......