X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Fganeti2%2Ftemplates%2Finstance-debootstrap%2Fhooks%2F00-dsa-configure-networking.erb;h=e06ecfff0de90688f137b32d09341188fb385e03;hb=501e88f916b62cdc232b204457a82ee77ab089b2;hp=5db20ee2b7ce5ec146dec2cac623bc47663db3ef;hpb=7ab5198283d21673db8e4e835b2e0592a7030971;p=dsa-puppet.git diff --git a/modules/ganeti2/templates/instance-debootstrap/hooks/00-dsa-configure-networking.erb b/modules/ganeti2/templates/instance-debootstrap/hooks/00-dsa-configure-networking.erb index 5db20ee2..e06ecfff 100755 --- a/modules/ganeti2/templates/instance-debootstrap/hooks/00-dsa-configure-networking.erb +++ b/modules/ganeti2/templates/instance-debootstrap/hooks/00-dsa-configure-networking.erb @@ -19,6 +19,15 @@ fi rm -f $TARGET/etc/udev/rules.d/70-persistent-net.rules +touch $TARGET/etc/udev/rules.d/75-cd-aliases-generator.rules +touch $TARGET/etc/udev/rules.d/75-persistent-net-generator.rules + + +########################################### +fqdn=$(cat $TARGET/etc/hostname) +echo ${fqdn%%.*} > $TARGET/etc/hostname + +########################################### if [ "$NIC_COUNT" -ge 1 ]; then cat > $TARGET/etc/network/interfaces << EOF # /etc/network/interfaces @@ -26,6 +35,17 @@ if [ "$NIC_COUNT" -ge 1 ]; then auto lo iface lo inet loopback +EOF +fi + + +########################################### +########################################### +<% if scope.lookupvar('::cluster').to_s == 'ganeti2.debian.org' -%> + +########################################### +if [ "$NIC_COUNT" -ge 1 ]; then + cat >> $TARGET/etc/network/interfaces << EOF auto eth0 iface eth0 inet static address ${NIC_0_IP} @@ -41,22 +61,99 @@ EOF fi -if [ "$NIC_COUNT" -ge 2 ]; then +########################################### +cat > $TARGET/etc/resolv.conf < +# +########################################### +if [ "$NIC_COUNT" -ge 1 ]; then cat >> $TARGET/etc/network/interfaces << EOF -auto eth1 -iface eth1 inet static +auto eth0 +iface eth0 inet static address ${NIC_0_IP} - netmask 255.255.255.0 + netmask 255.255.255.128 + gateway 140.211.166.1 + + pre-up /sbin/sysctl -w net.ipv6.conf.\$IFACE.accept_ra=0 || true EOF fi +########################################### +cat > $TARGET/etc/resolv.conf < +# +########################################### +if [ "$NIC_COUNT" -ge 1 ]; then + cat >> $TARGET/etc/network/interfaces << EOF +auto eth0 +iface eth0 inet static + address ${NIC_0_IP} + netmask 255.255.255.192 + gateway 82.195.75.126 + + pre-up /sbin/sysctl -w net.ipv6.conf.\$IFACE.accept_ra=0 || true +EOF + +fi + +########################################### cat > $TARGET/etc/resolv.conf < + +# No config for cluster <%= scope.lookupvar('::cluster').to_s %> +cp /etc/resolv.conf $TARGET/etc/resolv.conf + +<% end -%> + + + + +########################################### +if [ "$NIC_COUNT" -ge 2 ]; then + cat >> $TARGET/etc/network/interfaces << EOF + +auto eth1 +iface eth1 inet static + address ${NIC_1_IP} + netmask 255.255.255.0 +EOF + +fi + +########################################### +# clean up etc/hosts +cat > $TARGET/etc/hosts << EOF +127.0.0.1 localhost +${NIC_0_IP} ${fqdn} ${fqdn%%.*} + +# The following lines are desirable for IPv6 capable hosts +::1 ip6-localhost ip6-loopback +fe00::0 ip6-localnet +ff00::0 ip6-mcastprefix +ff02::1 ip6-allnodes +ff02::2 ip6-allrouters EOF exit 0