bunch of minor updates
[automated-distro-installer] / faiserver-setup
1 #!/bin/bash
2 # Copyright (C) 2018 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 x="$(readlink -f "$BASH_SOURCE")"; source "${x%/*}/bash-trace"
19
20 [[ $EUID == 0 ]] || exec sudo -i "${BASH_SOURCE}" "$@"
21
22 usage() {
23 cat <<EOF
24 usage: ${0##*/} [-h|--help] [BASE_CODENAME] [ARCH]
25 install fai-server on the current machine
26
27 Initial setup of a fai server. works on localhost. Set's the current ip
28 as the tftp server. I vaguely remember that using a hostname does not
29 work. Separate from running this, faiserver needs to be setup in dns to
30 point to whatever host this is run on.
31
32 Default BASE_CODENAME is buster. Default ARCH is 64. The script expects corresponding
33 $BASEFILE_DIR/${UPCASED_BASE_CODENAME}${ARCH}.tar.(gz|xz) to exist, and it must have been
34 generated around the same time as the nfsroot, at least so it has the
35 same kernel version.
36
37 EOF
38 exit $1
39 }
40 case $1 in
41 -h|--help) usage ;;
42 esac
43
44
45 e() { echo "+ $@"; "$@"; }
46
47
48 base=${1:-buster}
49 arch=${2:-64}
50 basefile=($BASEFILE_DIR/${base^^}${arch^^}.tar.gz)
51 sed="sed -ri --follow-symlinks"
52
53 if [[ ! -e $basefile ]]; then
54 printf "%s\n" "$0: error basefile=$basefile does not exist" >&2
55 exit 1
56 fi
57
58 if [[ ! -d $BASEFILE_DIR ]]; then
59 printf "%s\n" "$0: error BASEFILE_DIR=$BASEFILE_DIR does not exist" >&2
60 exit 1
61 fi
62
63
64 if ! type -p wget &>/dev/null; then
65 apt-get install -y wget
66 fi
67
68 armhf() {
69 [[ $(dpkg --print-architecture) == armhf ]]
70 }
71
72 if grep -xFq 'VERSION="8 (jessie)"' /etc/os-release; then
73 gpg -a --recv-keys 2BF8D9FE074BCDE4; gpg -a --export 2BF8D9FE074BCDE4 | apt-key add -
74 cat >/etc/apt/sources.list.d/fai.list <<'EOF'
75 deb https://fai-project.org/download jessie koeln
76 EOF
77 elif grep -iE 'VERSION=.*(stretch|flidas|xenail|buster|etiona)' /etc/os-release; then
78 # fai on ubuntu only has official support using the universe repo, but newer
79 # tends to have less bugs.
80 wget -O - https://fai-project.org/download/2BF8D9FE074BCDE4.asc | apt-key add -
81
82 case $base in
83 stretch)
84 cat >/etc/apt/sources.list.d/fai.list <<'EOF'
85 deb https://fai-project.org/download stretch koeln
86 EOF
87 ;;
88 buster)
89 cat >/etc/apt/sources.list.d/fai.list <<'EOF'
90 deb https://fai-project.org/download buster koeln
91 EOF
92 ;;
93 esac
94 else
95 rm -f /etc/apt/sources.list.d/fai.list
96 fi
97
98 apt-get update
99
100 # Relevant packages from fai-quickstart depends and fai-server recommends.
101 # I especially do not wait isc-dhcp-server or an inetd. Also excludes
102 # nfs-kernel-server. On an android chroot, we don\'t have nfs in the
103 # kernel, or the ability to install it.
104 # xorriso is for running fai-cd -a, not strictly need for fai-server
105 # perl-tk is for fai-monitor-gui
106 pkgs=(fai-doc tftpd-hpa tar reprepro squashfs-tools binutils xorriso)
107 if modprobe nfsd &>/dev/null; then
108 pkgs+=(nfs-kernel-server)
109 else
110 pkgs+=(apache2)
111 fi
112
113
114 e apt-get install -y ${pkgs[@]}
115 # confnew since we edit /etc/fai/NFSROOT in an automated way
116 # fai-client is already a fai-server dependency, but make sure it gets upgraded
117 e apt-get install --no-install-recommends -y -o Dpkg::Options::=--no-force-confdef -o Dpkg::Options::=--force-confnew fai-server fai-client
118
119 r=http://http.us.debian.org/debian
120 # like default, but scrap httpredir, and nonfree.
121 # All my systems should be able to get along without nonfree
122 # for a base working system afaik.
123 cat >/etc/fai/apt/sources.list <<EOF
124 deb $r $base main contrib
125 deb http://security.debian.org/debian-security $base/updates main contrib
126 EOF
127
128
129 case $base in
130 jessie|stretch|buster)
131 cat >>/etc/fai/apt/sources.list <<EOF
132 # use fai repo. it's commented in the defaults. it's got bug fixes.
133 # and may contain newer packages.
134 deb http://fai-project.org/download $base koeln
135 EOF
136 ;;
137 esac
138
139 if [[ $base == jessie ]]; then
140 cat >>/etc/fai/apt/sources.list <<'EOF'
141 # fix tar https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819978
142 deb http://ftp.debian.org/debian jessie-backports main
143 EOF
144 # note, fai doesn\'t look at /etc/fai/apt/preferences.d
145 cat >/etc/fai/apt/preferences <<'EOF'
146 Package: tar
147 Pin: release a=jessie-backports
148 Pin-Priority: 500
149 EOF
150 fi
151
152
153 $sed -f - /etc/fai/nfsroot.conf <<EOF
154 $ a FAI_ROOTPW='$(</q/root/shadow/standard)'
155 /^\s*FAI_ROOTPW/d
156 $ a SSH_IDENTITY=/root/.ssh/home.pub
157 /^\s*SSH_IDENTITY/d
158 s,^( *FAI_DEBOOTSTRAP=).*,\1"$base $r",
159 # add --arch amd64. this is needed on arm system which is
160 # used to install amd64 clients. On amd64 servers, it's redundant.
161 # disabled for now, since creating fai nfsroot on my arm machine
162 # is not working
163 #/--arch amd64/!s/^(\s*FAI_DEBOOTSTRAP_OPTS=")/\1--arch amd64 /
164 EOF
165
166 $sed 's/#LOGUSER/LOGUSER/' /etc/fai/fai.conf
167 $sed -i '/^LOGUSER=/d' /etc/fai/fai.conf
168 $sed -i '/^FAI_FLAGS=/d' /etc/fai/fai.conf
169 echo "FAI_FLAGS=verbose" >>/etc/fai/fai.conf
170 # note if this isnt set, the user isnt created
171 echo "LOGUSER=fai" >>/etc/fai/fai.conf
172
173 # from man fai-make-nfsroot,
174 # figured out after partitioning ignored my crypt partition
175
176
177 cedit /etc/fai/NFSROOT <<'EOF' || [[ $? == 1 ]]
178 # inserted by faserver-setup
179 PACKAGES install
180 cryptsetup
181 # default one is linux-image-server, doesnt exist anymore
182 linux-image-amd64
183 # default is btrfs-tools which doesnt exist anymore
184 btrfs-progs
185 iw
186 # got an error in error.log about not having gpg.
187 # system seemed to still install ok, so i havent tested if this fixes it.
188 gpg
189 EOF
190
191 if armhf; then
192 cd /srv/fai
193 e rm -rf nfsroot
194 e tar Jxf $basefile
195 # background: Can't build the nfsroot on my arm system now. First,
196 # fai-make-nfsroot won't work out of the box. One idea to make it work
197 # is by installing qemu-user-static, then copying qemu-x86_64-static
198 # into the nfsroot, and prepending it to chroot commands in
199 # fai-make-nfsroot, but that fails in odd ways. ls has permissions
200 # problems on reading directories, various programs segfault
201 # immediately, cat can't open a file, etc.
202
203 NFSROOT=/srv/fai/nfsroot
204 TFTPROOT=/srv/tftp/fai
205
206 # test if our copy of setup_tftp has changed in fai-make-nfsroot,
207 # and if not, run it.
208 setup_tftp(){
209
210 # tftp environment
211 local pxebin
212
213 # wheezy path
214 if [ -f $NFSROOT/usr/lib/PXELINUX/pxelinux.0 ]; then
215 pxebin=$NFSROOT/usr/lib/PXELINUX/pxelinux.0
216 else
217 # jessie+ path
218 pxebin=$NFSROOT/usr/lib/syslinux/pxelinux.0
219 fi
220
221 rm -f $NFSROOT/boot/*.bak
222 mkdir -p $TFTPROOT/pxelinux.cfg
223 if ! chmod a+r $NFSROOT/boot/initrd.img-*; then
224 echo "$0: error: No initrd was created. Check the package name of the linux-image package in /etc/fai/NFSROOT."
225 exit 1
226 fi
227 cp -p $v $NFSROOT/boot/vmlinu?-* $NFSROOT/boot/initrd.img-* $TFTPROOT
228 cp -u $pxebin $TFTPROOT
229 if [ -f $NFSROOT/usr/lib/syslinux/modules/bios/ldlinux.c32 ]; then
230 cp -u $NFSROOT/usr/lib/syslinux/modules/bios/ldlinux.c32 $TFTPROOT
231 fi
232 if [ X$verbose = X1 ]; then
233 echo "TFTP environment prepared. Enable DHCP and start the TFTP daemon on root $TFTPROOT."
234 fi
235 }
236 diff -u <(type setup_tftp) <(cat <(sed -n '/^setup_tftp(){/,/^}/p' $(which fai-make-nfsroot) ) - <<'EOF' |bash
237 type setup_tftp
238 EOF
239 )
240 e setup_tftp
241
242 # -g causes skipping set_root_pw() in fai-make-nfsroot, -ag
243 # is the only way to make it run without chrooting. the options
244 # seem contradictory, but it works.
245 e fai-setup -evag
246
247 else # not armhf
248 # note, this copies the -B arg to
249 # /srv/fai/nfsroot/var/tmp/base.tar.xz
250 e fai-setup -evf -B $basefile
251 # fai-setup expert mode avoids writing to /var/log/fai/variables
252 # at least config_src is needed for autodiscover
253 $sed '/^FAI_CONFIGDIR|^FAI_CONFIG_SRC|^LOGUSER/d' /var/log/fai/variables
254 tee -a /var/log/fai/variables <<'EOF'
255 LOGUSER=fai
256 FAI_CONFIGDIR=/srv/fai/config
257 FAI_CONFIG_SRC=nfs://faiserver/srv/fai/config
258 EOF
259 # make the faiserver also the apt proxy server
260 apt-get -y install apt-cacher-ng
261 fi
262
263 rm -f /srv/fai/nfsroot/root/.ssh/known_hosts
264 key=$(ssh-keyscan localhost |& grep -o "ecdsa-sha2-nistp256.*")
265 for ip in faiserver $(ip addr show up| grep -w '^ *inet' | awk '{print $2}'| cut -d / -f 1 | grep -vF 127.0.0.1); do
266 echo "$ip $key" >>/srv/fai/nfsroot/root/.ssh/known_hosts
267 done
268
269
270 # serial console
271 # mainly from
272 # https://wiki.archlinux.org/index.php/working_with_the_serial_console
273 # at runtime, running this from ssh worked:
274 # https://unix.stackexchange.com/questions/242778/what-is-the-easiest-way-to-configure-serial-port-on-linux
275 # stty -F /dev/ttyS0 115200 cs8 -cstopb -parenb
276 # /sbin/agetty 115200 ttyS0 linux
277 # dated info, but validation that this might work on debian:
278 # https://help.ubuntu.com/community/SerialConsoleHowto
279 # note in the nfsroot, systemd is not running.
280 echo "c0:2345:respawn:/sbin/agetty 115200 ttyS0 linux" >>/srv/fai/nfsroot/etc/inittab
281
282 # initially did the basic fai-chboot -Iv $std_arg default
283 # but found in console that it wanted to mount nfsroot
284 # to be the same as my dhcp server.
285 # Figured out to change the root= parameter from googling,
286 # and seeing fai-chboot -L
287 # using hostname failed.
288 # for -f, combined the 2 defaults so it will reboot and print to screen.
289
290 # Add debug to -f flag for more verbose output.
291
292
293 # background on choosing apt-cacher-ng:
294 # googling around a bit finds 2 main solutions:
295 # http://askubuntu.com/questions/3503/best-way-to-cache-apt-downloads-on-a-lan
296 # apt-cacher-ng doesn\'t have zeroconf.
297 # It touts having minimal dependencies, but I don\'t care.
298 # The downside to squid-deb-proxy is that it\'s config is for specific repos,
299 # you have to add all the repos you use.
300 # That is the main reason I use apt-cacher-ng.
301 # It has a web portal, at http://faiserver:3142/acng-report.html
302
303
304 # random fai note: as far as I can tell, profiles are just for putting
305 # in a selectable boot menu, which I don\'t want.
306
307 # the logsave prompted because the hostname faiserver was uknown.
308 # Here it was faiserver.lan when running from a faiserver vm.
309 # When running from a normal host with faiserver alias, it was the normal hosts name.
310 $sed 's/(^[^,]+,)\S+/\1faiserver/' /srv/fai/nfsroot/root/.ssh/known_hosts
311 # ditch the logo banner up top which screws with less.
312 touch /srv/fai/nfsroot/.nocolorlogo