2016-04-11 06:29:41 +00:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
|
|
|
install -m 644 files/ipv6.conf ${ROOTFS_DIR}/etc/modprobe.d/ipv6.conf
|
|
|
|
install -m 644 files/interfaces ${ROOTFS_DIR}/etc/network/interfaces
|
|
|
|
install -m 644 files/hostname ${ROOTFS_DIR}/etc/hostname
|
|
|
|
|
2016-11-14 23:55:45 +00:00
|
|
|
on_chroot << EOF
|
2016-04-11 06:29:41 +00:00
|
|
|
dpkg-divert --add --local /lib/udev/rules.d/75-persistent-net-generator.rules
|
|
|
|
EOF
|