minor improvements and misc changes
[automated-distro-installer] / lk
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 usage() {
19 cat <<EOF
20 Usage: ${0##*/} [-h|--help]
21 fai kexec from upstream live cds, i.e. curl|bash
22
23 You can copy this to a http server, then wget -O- url|sudo bash
24 curl is sometimes not preinstalled on a live cd.
25
26 Alternative to http server:
27 1. on install machine nc -l 1234 | sudo bash
28 2. On another machine nc INSTALL_MACHINE 1234 <live-kexec
29 Obviously beware that anyone on your network could send commands to the install machine.
30
31 This has been tested on trisquel 7 & 8 & ubuntu 16.04 & 18.10.
32 With 18.10 on an x200, kexec was unreliable, resulting in freezes and
33 kernel panics.
34
35 If the screen just sits in a weird color inverted, corrupted looking state,
36 it's probably nothing wrong with the computer, but a problem
37 with the fai server. If you can do this from a virtual terminal,
38 it will print out more info (I know from running it on a vm).
39 EOF
40 exit $1
41 }
42 case $1 in
43 -h|--help) usage ;;
44 esac
45
46
47 set -ex
48 if grep -q ID=ubuntu /etc/os-release; then
49 # add universe, pxe-kexec is there
50 sed -ri '/^\s*deb/{/universe/!s/$/ universe/}' /etc/apt/sources.list
51 fi
52 if ! type -p pxe-kexec >/dev/null 2>&1; then
53 apt-get update
54 apt-get install -y debconf
55 debconf-set-selections <<EOF
56 kexec-tools kexec-tools/load_kexec boolean false
57 EOF
58 apt-get install -y pxe-kexec
59 fi
60 # running this piped to bash on belenos, the apt-get goes
61 # into the background while it's still installing, and pxe-kexec
62 # just exits right away. sleep calls are strangely ignored.
63 # I don't know whats going on, but just running the same
64 # command again once it finishes works, and this is only
65 # rarely used and done manually anyways, so whatever.
66 pxe-kexec -n --ignore-whitelist -l fai-generated faiserver