]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/ganeti2/templates/instance-debootstrap/hooks/00-dsa-configure-networking.erb
Also add our own address to /etc/hosts
[dsa-puppet.git] / modules / ganeti2 / templates / instance-debootstrap / hooks / 00-dsa-configure-networking.erb
index 9662aaff49d13729c849b922edd766b7c682d1e0..214edb4dc60513b7bbe25bbaa16ae053e86a31db 100755 (executable)
@@ -46,14 +46,17 @@ fi
 
 if [ "$NIC_COUNT" -ge 2 ]; then
   cat >> $TARGET/etc/network/interfaces << EOF
+
 auto eth1
 iface eth1 inet static
-  address ${NIC_0_IP}
+  address ${NIC_1_IP}
   netmask 255.255.255.0
 EOF
 
 fi
 
+fqdn=$(cat $TARGET/etc/hostname)
+echo ${fqdn%%.*} > $TARGET/etc/hostname
 
 cat > $TARGET/etc/resolv.conf <<EOF
 # /etc/resolv.conf
@@ -62,6 +65,19 @@ nameserver 206.12.19.20
 nameserver 206.12.19.21
 EOF
 
+# 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
 
 # vim:set syn=sh: