debian-unattended/docker.sh

9 lines
351 B
Bash
Raw Normal View History

2022-08-15 02:31:03 +02:00
#!/usr/bin/env bash
apt-get update
apt-get install -y xorriso genisoimage
cd /root/unattended
genisoimage -r -J -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o $(ls | grep "netinst.iso" | sed 's/netinst/unattended/') isofiles
chown 1000:1000 $(ls | grep "netinst.iso" | sed 's/netinst/unattended/')