diff --git a/devuan-netboot.sh b/devuan-netboot.sh new file mode 100644 index 0000000..c47c92b --- /dev/null +++ b/devuan-netboot.sh @@ -0,0 +1,19 @@ +#!/bin/sh +# Nico Schottelius, 2019-12-09 + + +date=$(date +%F) +suite=ascii + +dir=${suit}-${date} + +debootstrap "${suite}" "${dir}" +chroot ${dir} apt install -y openssh-server rdnssd + +cat > ${dir}/etc/network/interfaces << EOF +auto lo +iface lo inet loopback + +auto eth0 +iface eth0 inet6 auto +EOF