source: trunk/debathena/scripts/installer/pxe/jaunty/debathena-jaunty/installer.sh @ 24900

Revision 24900, 8.2 KB checked in by amb, 14 years ago (diff)
Switch to installing Lucid by default; all options now kexec.
RevLine 
[23480]1#!/bin/sh
2
[23857]3cd /debathena-jaunty
[23480]4
5touch preseed
6
7pxetype=""
8
[23873]9# Using debconf here will hang, so parse the command line manually.
[24900]10# Commented out in the belief that hackbooting *into* the jaunty installer is now always the wrong thing.
11# clusterforce=`sed -e 's/ /\n/g' < /proc/cmdline | grep debathena/clusterforce | sed -e 's/.*=//'`
[23873]12clusteraddr=`sed -e 's/ /\n/g' < /proc/cmdline | grep debathena/clusteraddr | sed -e 's/.*=//'`
13
14if [ "$clusteraddr" ] ; then IPADDR=$clusteraddr ; fi
15
16if [ "$clusteraddr" -a "$clusterforce" = yes ] ; then pxetype=cluster ; fi
17
[23480]18netconfig () {
19  echo "Configuring network..."
[23857]20  mp=/debathena-jaunty
[23480]21  export IPADDR NETMASK GATEWAY SYSTEM CONTROL
22  while [ -z "$IPADDR" ] ; do
23    echo -n "Enter IP address: "
24    read IPADDR
25  done
26  NETMASK=`$mp/athena/netparams -f $mp/athena/masks $IPADDR|cut -d\  -f 1`
27  net=`$mp/athena/netparams -f $mp/athena/masks $IPADDR|cut -d\  -f 2`
28  bc=`$mp/athena/netparams -f $mp/athena/masks $IPADDR|cut -d\  -f 3`
29  GATEWAY=`$mp/athena/netparams -f $mp/athena/masks $IPADDR|cut -d\  -f 4`
30  maskbits=`$mp/athena/netparams -f $mp/athena/masks $IPADDR|cut -d\  -f 5`
31
[23873]32  echo "Address: $IPADDR"
33  echo
[23480]34  echo "Autoconfigured settings:"
35  echo "  Netmask bits: $maskbits"
36  echo "  Broadcast: $bc"
37  echo "  Gateway: $GATEWAY"
[23873]38
39  if [ "$clusterforce" != yes ] ; then
40    echo -n "Are these OK? [Y/n]: "; read response
41    case $response in
42      y|Y|"") ;;
43      *)
44      echo -n "Netmask bits [$maskbits]: "; read r; if [ "$r" ] ; then maskbits=$r ; fi
45      echo -n "Broadcast [$bc]: "; read r; if [ "$r" ] ; then bc=$r ; fi
46      echo -n "Gateway [$GATEWAY]: "; read r; if [ "$r" ] ; then GATEWAY=$r ; fi
[23480]47    esac
[23873]48  fi
[23480]49
50  # We can not set the hostname here; running "debconf-set netcfg/get_hostname"
51  # causes fatal reentry problems.  Setting values directly with preseeding
52  # also fails, as the DHCP values override it.
53  echo "Killing dhcp client."
54  killall dhclient
55  echo "Running: ip addr flush dev eth0"
56  ip addr flush dev eth0
57  echo "Running: ip addr add $IPADDR/$maskbits broadcast $bc dev eth0"
58  ip addr add $IPADDR/$maskbits broadcast $bc dev eth0
59  echo "Flushing old default route."
60  route delete default 2> /dev/null
61  echo "Running: route add default gw $GATEWAY"
62  route add default gw $GATEWAY
63  echo "Replacing installer DHCP nameserver with MIT nameservers."
64  sed -e '/nameserver/s/ .*/ 18.72.0.3/' < /etc/resolv.conf > /etc/resolv.conf.new
65  echo "nameserver      18.70.0.160" >> /etc/resolv.conf.new
66  echo "nameserver      18.71.0.151" >> /etc/resolv.conf.new
67  mv -f /etc/resolv.conf.new /etc/resolv.conf
68}
69
[23895]70# Color strings. I'd like to use tput, but the installer doesn't have it.
71esc=""
72nnn="${esc}[m"          # Normal
73ccc="${esc}[36m"        # Cyan
74rrr="${esc}[1;31m"      # Bold and red
75ddd="${esc}[1;31;47m"   # Plus gray background
76ddb="${esc}[1;31;47;5m" # Plus blinking
[23480]77
[23859]78
[23857]79echo "Welcome to Athena."
[23480]80echo
81
82while [ -z "$pxetype" ] ; do
83  echo "Choose one:"
84  echo
[23859]85  echo "  1: Perform an unattended ${ccc}debathena-cluster${nnn} install, ${rrr}ERASING your"
86  echo "     ENTIRE DISK${nnn}. This option is only intended for people setting up"
[23857]87  echo "     public cluster machines maintained by IS&T/Athena. If you select"
88  echo "     this option, you hereby agree with the license terms at:"
[23480]89  echo "     <http://dlc.sun.com/dlj/DLJ-v1.1.txt>,"
90  echo "     Sun's Operating System Distributor License for Java version 1.1."
[23857]91  echo
[24900]92  echo "  2: Do a ${ccc}normal Debathena install${nnn} of Ubuntu 10.04${nnn} (Lucid Lynx)."
93  echo "     You'll need to answer normal Ubuntu install prompts, and then the"
94  echo "     Athena-specific prompts, including choosing which flavor of Debathena"
95  echo "     you'd like (e.g., private workstation)."
[23857]96  echo
[24900]97  echo "  3: Punt to a completely ${ccc}vanilla install of Ubuntu 10.04${nnn} (Lucid Lynx)."
[23480]98  echo "     (Note: locale and keyboard have already been set.)"
99  echo
[23859]100  echo "  4: /bin/sh (for rescue purposes)"
[23480]101  echo
102  echo -n "Choose: "
103  read r
104  case "$r" in
105    1)
[23857]106      echo "Debathena CLUSTER it is."; pxetype=cluster ;;
[23911]107    1a)
[24900]108      echo "Debathena CLUSTER it is, forced to 32-bit."; pxetype=cluster ; arch=i386;;
[23480]109    2)
[23857]110      echo "Normal Debathena install it is."; pxetype=choose ;;
[23859]111    3)
[23480]112      echo "Vanilla Ubuntu it is."; pxetype=vanilla;;
[23859]113    4)
[23480]114      echo "Here's a shell.  You'll return to this prompt when done."
115      /bin/sh;;
[24900]116    9)
117      echo "There is no option 9.  Option 1 will do a Lucid cluster install.";;
[23480]118    *)
119      echo "Choose one of the above, please.";;
120  esac
121done
122
123##############################################################################
124
[24247]125if [ -z "$mirrorsite" ] ; then mirrorsite=ubuntu.media.mit.edu ; fi
126
[24273]127# Consider setting a static IP address, especially if we can't reach the mirror.
[24276]128if [ cluster != $pxetype ]; then
129  # We're at a point in the install process where we can be fairly sure
130  # that nothing else is happening, so "killall wget" should be safe.
131  (sleep 5; killall wget >/dev/null 2>&1) &
132  if wget -s http://$mirrorsite/ubuntu ; then
133    if ip address show to 18/8 | grep -q . && ! ip address show to 18.2/16 | grep -q . ; then
[24247]134      echo "Your computer seems to be registered on MITnet."
135    else
136      echo "Your computer seems not to be registered on MITnet, but the mirror"
137      echo "site $mirrorsite is accessible."
138    fi
139    echo
140    echo "${ccc}You can continue the install using your existing dynamic address.${nnn}"
141    echo -n "Configure a static address anyway?  [y/N]: "
142    while : ; do
143      read r
144      case "$r" in
145        N*|n*|"") break;;
146        y*|Y*) netconfig; break;;
147      esac
148      echo -n "Choose: [y/N]: "
149    done
150  else
151    echo "The mirror site $mirrorsite is NOT accessible in your current"
152    echo "dynamic configuration."
153    echo
154    echo "${rrr}You must specify a static address for the installation.${nnn}"
155    netconfig
156  fi
157else
158  netconfig
159fi
[23480]160
[24273]161if [ cluster = "$pxetype" ]; then
162  if [ notreally != "$destroys" ]; then
163    cat << EOF
164************************************************************
165               ${ddb}DESTROYS${nnn}
166${rrr}THIS PROCEDURE ${ddd}DESTROYS${nnn}${rrr} THE CONTENTS OF THE HARD DISK.${nnn}
167               ${ddb}DESTROYS${nnn}
168
169IF YOU DO NOT WISH TO CONTINUE, REBOOT NOW.
170
171************************************************************
172
173EOF
174    echo "Installing autoinstall preseed file."
175    egrep -v '(^$|^#)' < preseed.autoinstall >> preseed
176  else
177    echo "Installing autoinstall preseed file without automated partitioning."
178    egrep -v '(^$|^#|partman)' < preseed.autoinstall >> preseed
179  fi
180fi
181
[24900]182echo "Initial Debathena setup complete; ready to reboot into main installer."
[23873]183if ! [ "$clusteraddr" -a "$clusterforce" = yes ] ; then
184  echo "Hit return to continue."
185  read r
186fi
[24900]187
188# Fetch secondary (real) installer, invoking as specified above:
189if [ -z "$arch" ] ; then
190  if egrep -q '^flags[  ].* lm( |$)' /proc/cpuinfo
191    then arch=amd64 ; else arch=i386
192  fi
193fi
194
195echo "Configuring network and fetching next installer phase..."
196# net already configured above
197mkdir /h; cd /h
198wget http://debathena.mit.edu/net-install/kexec
199wget http://debathena.mit.edu/net-install/lucid/${arch}/initrd.gz
200wget http://debathena.mit.edu/net-install/lucid/${arch}/linux
201chmod 755 kexec
202# This is just the guts of the hackboot script:
203dkargs="DEBCONF_DEBUG=5"
204hname=install-target-host
205if [ "$IPADDR" = dhcp ] ; then
206  knetinfo="netcfg/get_hostname=$hname "
207else
208  # There's no good way to get a hostname here, but the postinstall will deal.
209  knetinfo="netcfg/disable_dhcp=true \
210    netcfg/get_domain=mit.edu \
211    netcfg/get_hostname=$hname \
212    netcfg/get_nameservers=18.72.0.3 \
213    netcfg/get_ipaddress=$IPADDR \
214    netcfg/get_netmask=$NETMASK \
215    netcfg/get_gateway=$GATEWAY \
216    netcfg/confirm_static=true"
217fi
218kargs="$knetinfo locale=en_US console-setup/layoutcode=us interface=auto \
219          url=http://18.9.60.73/installer/lucid/debathena.preseed \
220          debathena/pxetype=$pxetype debathena/clusteraddr=$IPADDR --"
221echo "Continuing in five seconds..."
222./kexec -l linux --append="$dkargs $kargs" --initrd=initrd.gz \
223          && sleep 3 && chvt 1 && sleep 2 && ./kexec -e
224echo "Secondary installed failed; please contact release-team@mit.edu"
225echo "with the circumstances of your install attempt.  Here's a shell for debugging:"
226# We don't want to let this fall through to an actual Jaunty install.
227while : ; do /bin/sh ; done
Note: See TracBrowser for help on using the repository browser.