]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/ganeti2/templates/instance-debootstrap/hooks/00-dsa-configure-networking.erb
Clean up etc/hosts
[dsa-puppet.git] / modules / ganeti2 / templates / instance-debootstrap / hooks / 00-dsa-configure-networking.erb
1 #!/bin/bash
2
3 set -e
4
5 if [ -z "$TARGET" -o ! -d "$TARGET" ]; then
6   echo "Missing target directory"
7   exit 1
8 fi
9
10 if [ ! -d "$TARGET/etc/network" ]; then
11   echo "Missing target network directory"
12   exit 1
13 fi
14
15 if [ -z "$NIC_COUNT" ]; then
16   echo "Missing NIC COUNT"
17   exit 1
18 fi
19
20 rm -f $TARGET/etc/udev/rules.d/70-persistent-net.rules
21
22 touch $TARGET/etc/udev/rules.d/75-cd-aliases-generator.rules
23 touch $TARGET/etc/udev/rules.d/75-persistent-net-generator.rules
24
25 if [ "$NIC_COUNT" -ge 1 ]; then
26   cat > $TARGET/etc/network/interfaces << EOF
27 # /etc/network/interfaces
28
29 auto lo
30 iface lo inet loopback
31
32 auto eth0
33 iface eth0 inet static
34   address ${NIC_0_IP}
35   netmask 255.255.255.0
36   gateway 206.12.19.254
37
38   pre-up /sbin/sysctl -w net.ipv6.conf.\$IFACE.accept_ra=0 || true
39   up   ip addr add 2607:f8f0:610:4000:6564:0a62:\$IF_ADDRESS/64 dev \$IFACE
40   up   ip r add default via 2607:f8f0:610:4000::1 src 2607:f8f0:610:4000:6564:0a62:\$IF_ADDRESS dev \$IFACE
41   down ip r del default via 2607:f8f0:610:4000::1 src 2607:f8f0:610:4000:6564:0a62:\$IF_ADDRESS dev \$IFACE
42   down ip addr del 2607:f8f0:610:4000:6564:0a62:\$IF_ADDRESS/64 dev \$IFACE
43 EOF
44
45 fi
46
47 if [ "$NIC_COUNT" -ge 2 ]; then
48   cat >> $TARGET/etc/network/interfaces << EOF
49 auto eth1
50 iface eth1 inet static
51   address ${NIC_1_IP}
52   netmask 255.255.255.0
53 EOF
54
55 fi
56
57
58 cat > $TARGET/etc/resolv.conf <<EOF
59 # /etc/resolv.conf
60 search debprivate-ubc.debian.org debian.org
61 nameserver 206.12.19.20
62 nameserver 206.12.19.21
63 EOF
64
65 # clean up etc/hosts
66 cat > $TARGET/etc/hosts
67 127.0.0.1       localhost
68
69 # The following lines are desirable for IPv6 capable hosts
70 ::1     ip6-localhost ip6-loopback
71 fe00::0 ip6-localnet
72 ff00::0 ip6-mcastprefix
73 ff02::1 ip6-allnodes
74 ff02::2 ip6-allrouters
75 EOF
76
77 exit 0
78
79 # vim:set syn=sh: