~mathiaz/+junk/uec-testing-preseeds

77 by Mathias Gug
Update multi-network preseeds.
1
{% extends "base" %}
2
{% block late_command %}
79 by Mathias Gug
Fix multi_router preseed.
3
d-i preseed/late_command string echo 8021q >> /target/etc/modules; echo -e "\nauto eth0.3251\niface eth0.3251 inet static\naddress 10.55.51.1\nnetmask 255.255.255.0\nauto eth0.3252\niface eth0.3252 inet static\naddress 10.55.52.1\nnetmask 255.255.255.0\nauto eth0.3253\niface eth0.3253 inet static\naddress 10.55.53.1\nnetmask 255.255.255.0\n" >> /target/etc/network/interfaces; echo "net.ipv4.ip_forward=1" > /target/etc/sysctl.d/60-uec-multi-router.conf;
4
{% endblock %}
5
6
{% block custom_config %}
80 by Mathias Gug
Add openssh-server to multi_router.
7
d-i pkgsel/include string vlan bridge-utils openssh-server
77 by Mathias Gug
Update multi-network preseeds.
8
{% endblock %}