1 2 3 4 5 6 | # Standard setup
d-i preseed/late_command string in-target wget http://host/bootstrap/scripts/kvm.sh ; \
in-target chmod +x kvm.sh; \
in-target /bin/bash -x kvm.sh; \
cp /target/etc/network/interfaces /etc/network/interfaces; \
in-target rm -f kvm.sh;
|