adding free stuff
This commit is contained in:
@@ -1,3 +1,2 @@
|
|||||||
temp/
|
temp/
|
||||||
free/
|
|
||||||
non-free/
|
non-free/
|
||||||
|
|||||||
Regular → Executable
+13
@@ -1,4 +1,17 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
. ./settings.sh
|
||||||
|
|
||||||
|
# --- Debian 11 Installer
|
||||||
|
DIST="bullseye"
|
||||||
|
ARCHS="amd64 i386"
|
||||||
|
for ARCH in ${ARCHS};
|
||||||
|
do
|
||||||
|
DEBURL="https://deb.debian.org/debian/dists/${DIST}/main/installer-${ARCH}/current/images/netboot/netboot.tar.gz"
|
||||||
|
wget -nc -O ./temp/netboot-${ARCH}.tar.gz $DEBURL
|
||||||
|
if [ -e ./temp/netboot-${ARCH}.tar.gz ]; then
|
||||||
|
mkdir -p ${TFTP}/free/deb
|
||||||
|
tar xfvzC ./temp/netboot-${ARCH}.tar.gz ${TFTP}/free/deb
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
|||||||
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 407 KiB |
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 276 KiB |
Reference in New Issue
Block a user