mostly fixes
[distro-setup] / distro-begin
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # for setting up a new machine
17 # usage: $0 [-r] [HOSTNAME]
18 # HOSTNAME changes the machine's hostname
19
20 # tips:
21 # run any sudo command first so your pass is cached
22 # set the scrollback to unlimited in case something goes wrong
23
24
25 # send to registrar, glue records:
26 # for iankelling.org:
27
28 # ns1.iankelling.org 72.14.176.105
29 # ns1.iankelling.org 2600:3c00::f03c:91ff:fe6d:baf8
30 # ns2.iankelling.org 172.105.84.95
31 # ns2.iankelling.org 2a01:7e01::f03c:91ff:feb5:baec
32
33 # for zroe.org:
34
35 # ns1.zroe.org 72.14.176.105
36 # ns1.zroe.org 2600:3c00::f03c:91ff:fe6d:baf8
37 # ns2.zroe.org 172.105.84.95
38 # ns2.zroe.org 2a01:7e01::f03c:91ff:feb5:baec
39 #
40
41
42
43 ####### begin setup environment #######
44
45
46 ### make ssh interactive shell run better. for when running line interactively line by line
47 sudo bash -c '/a/exe/ssh-emacs-setup'
48
49 ##### setup error handling
50 interactive=true # set this to false to force set -x
51 [[ $- == *i* ]] || interactive=false
52 if ! $interactive; then
53 set -x
54 fi
55 source /a/bin/errhandle/err
56
57 mkdir -p ~/.local
58 err-cleanup() {
59 echo 1 >~/.local/distro-begin
60 }
61
62 source /a/bin/distro-functions/src/package-manager-abstractions
63
64 ### setup logging
65 echo "$0: $(date): starting now)"
66
67
68 ### sanity checking
69 if [[ $EUID == 0 ]]; then
70 if getent passwd iank || getent passwd ian ; then
71 echo "$0: error: running as root. unprivileged user exists. use it."
72 exit 1
73 else
74 echo "$0: warning: running as root. I will setup users then exit"
75 fi
76 fi
77
78
79 ### arg parsing
80 recompile=false
81 emacs=false
82 if [[ -e /a/opt/emacs ]]; then
83 emacs=true
84 fi
85 while [[ $1 == -* ]]; do
86 case $1 in
87 -r) recompile=true; shift ;;
88 -e) emacs=false; shift ;;
89 esac
90 done
91 if [[ $1 ]]; then
92 export HOSTNAME=$1
93 fi
94
95
96 ##### variables/env setup
97 script_dir="$(readlink -f "${BASH_SOURCE[@]}")"; script_dir=${script_dir%/*}
98 # shellcheck source=./pkgs
99 source $script_dir/pkgs
100 set +x
101 source /a/bin/distro-functions/src/identify-distros
102 $interactive || set -x
103 for f in kd x2 x3 frodo tp li bk je demohost kw sy bo; do
104 eval "$f() { [[ $HOSTNAME == $f ]]; }"
105 done
106 codename=$(debian-codename)
107 bitfolk() { je || bk; }
108 has_wayland() { has_monitor && [[ $codename == buster ]]; }
109 has_x() { has_monitor && [[ $codename != buster ]]; }
110 has_monitor() { ! vps ; }
111 vps() { bitfolk || li; }
112 # linode actually has btrfs now, but we dont do anything with it.
113 has_btrfs() { ! vps; }
114 home_network() { ! vps && ! tp; }
115 has_p() { ! vps && ! tp; }
116 encrypted() { ! bitfolk; }
117 shopt -s extglob
118 export GLOBIGNORE="*/.:*/.."
119 umask 022
120 PATH="/a/exe:$PATH"
121 sed="sed --follow-symlinks"
122
123 ####### end setup environment #######
124
125
126 ##### begin setup encryption scripts ######
127 if encrypted; then
128 # I tried making a service which was dependent on reboot.target,
129 # but it happened too late in the shutdown process.
130 sudo dd of=/etc/systemd/system/keyscripton.service <<'EOF'
131 [Unit]
132 Description=keyscripton
133 # This is triggered by reboot and when keyscriptoff stops.
134
135 # tried using graphical.target, but it made my display manager restart before rebooting.
136 # generally, I don't think targets order shutdown like they do startup.
137 # So, I did systemd-analyze plot > something.svg, and picked a reliably started
138 # service that happens late in the game.
139 After=ntp.service
140 DefaultDependencies=no
141 # not sure if needed, makes sure we shut down before reboot.target
142 Conflicts=reboot.target
143
144 [Service]
145 Type=oneshot
146 RemainAfterExit=yes
147 ExecStart=/bin/true
148 ExecStop=/a/exe/keyscript-on
149
150 [Install]
151 WantedBy=keyscriptoff.service
152 EOF
153 sudo systemctl daemon-reload # needed if the file was already there
154 sudo systemctl enable keyscripton.service
155
156 sudo dd of=/etc/systemd/system/keyscriptoff.service <<'EOF'
157 [Unit]
158 Description=keyscriptoff
159
160 [Service]
161 Type=oneshot
162 ExecStart=/a/exe/keyscript-off
163
164 [Install]
165 WantedBy=multi-user.target
166 EOF
167 sudo systemctl daemon-reload # needed if the file was already there
168 sudo systemctl enable keyscriptoff.service
169 sudo systemctl start keyscriptoff.service
170
171 pi rsync zstd
172
173 ## /usr/share/doc/dropbear-initramfs/README.initramfs.gz
174 ## claims we need to do this. but it works fine without it.
175 # tmp=$(mktemp)
176 # while read -r m _; do /sbin/modinfo -F filename "$m"; done </proc/modules | \
177 # sed -nr "s@^/lib/modules/$(uname -r)/kernel/drivers/net(/.*)?/([^/]+)\.ko\$@\2@p" \
178 # | sudo dd of=$tmp
179 # if ! diff -q /etc/initramfs-tools/modules $tmp &>/dev/null; then
180 # sudo dd if=$tmp of=/etc/initramfs-tools/modules
181 # sudo /usr/sbin/update-initramfs -u -k all
182 # fi
183 #
184 ## if we were creating an intall for a different machine needing different modules, we could include them all like this:
185 ## find /lib/modules/*/kernel/drivers/net /lib/modules/*/kernel/net -type f -name '*.ko' -printf "%f\n" | sed 's/.ko$//' | sort -u >/etc/initramfs-tools/modules
186
187 # this is here to cleanup the leftover from the comments above. remove it eventually.
188 if [[ -s /etc/initramfs-tools/modules ]]; then
189 sudo truncate -s0 /etc/initramfs-tools/modules
190 sudo /usr/sbin/update-initramfs -u -k all
191 fi
192
193 # initram auth keys get setup with rootsshsync later on.
194 $script_dir/rootsshsync
195
196 ### To do a remote unlock: ssh and do this once per crypt disk:
197 # echo -n PASS >/lib/cryptsetup/passfifo
198 # or for buster+
199 # cryptroot-unlock
200
201 fi
202 ##### end setup encryption scripts ######
203
204
205 # disabled until its fixed up
206 # install-myqueue
207
208 # todo, it would be nice to cut down on some of the output
209
210
211 #### rerun my fai-time scripts
212 # already ran for pxe installs, but used for vps & updates
213 distro=$(distro-name)
214 case $distro in
215 ubuntu|debian|trisquel)
216 sudo bash -c ". /a/bin/fai/fai-wrapper && /a/bin/fai/fai/config/scripts/GRUB_PC/11-iank"
217 ;;
218 *)
219 sudo bash -c ". /a/bin/fai/fai-wrapper &&
220 /a/bin/fai/fai/config/distro-install-common/end"
221 ;;
222 esac
223
224 ###### setup hostname
225 if [[ $HOSTNAME != $(cat /etc/hostname) ]]; then
226 echo $HOSTNAME > /etc/hostname
227 hostname -F /etc/hostname
228 fi
229 # office vpn dhcp adds to /etc/resolv.conf search office.fsf.org which
230 # makes that be #1 priority, which makes dnsmasq resolve that for
231 # unqualified hosts first, which means we skip the hosts file. Ya, its
232 # kinda dumb, but it is what it is. There is a dnsmasq config option to
233 # override it too, but this seems simpler.
234 sudo sed -i --follow-symlinks -f - /etc/hosts <<EOF
235 \$a 127.0.1.1 $HOSTNAME.b8.nz $HOSTNAME.office.fsf.org $HOSTNAME
236 /^127\.0\.1\.1/d
237 EOF
238
239 ##### exit first stage if running as root
240 if [[ $EUID == 0 ]]; then
241 if [[ ! -e /home/iank/.ssh/authorized_keys && ! -L /home/iank/.ssh/authorized_keys ]]; then
242 sudo -u iank mkdir -p /home/iank/.ssh
243 chmod 0700 /home/iank/.ssh
244 sudo -u iank ln -sf /p/c/machine_specific/vps/subdir_files/.ssh/authorized_keys /home/iank/.ssh
245 fi
246 echo "$0: running as root. exiting now that users are setup"
247 exit 0
248 fi
249
250
251 #### setup bash for root
252 for x in /a/c/{.bashrc,brc,brc2,.bash_profile,.profile,.inputrc,path_add_function}; do
253 sudo -i <<EOF
254 PATH="/a/exe:$PATH"
255 lnf $x /root
256 EOF
257 done
258
259 ###### link files
260 # convenient to just do all file linking in one place
261 sudo /a/exe/lnf -T /a/bin /b
262 sudo /a/exe/lnf -T /a/f /f
263 sudo /a/exe/lnf -T /var/log/exim4 /el
264 sudo /a/exe/lnf -T /a/f/ans /c
265 sudo /a/exe/lnf -T /nocow/t /t
266 if has_p; then
267 lnf -T /p/News ~/News
268 fi
269 dirs=(/q/root /q/root/.editor-backups /q/root/.undo-tree-history)
270 sudo mkdir -p ${dirs[@]}
271 sudo chmod 600 ${dirs[@]}
272 sudo /a/exe/lnf /q/root/.editor-backups /q/root/.undo-tree-history \
273 /a/opt /a/c/.emacs.d $HOME/mw_vars /k/backup /root
274 /a/bin/ds/install-my-scripts # needed for rootsshsync cronjob
275 sudo /a/exe/lnf /a/c/.vim /a/c/.vimrc /a/c/.gvimrc /root
276
277
278 ###### do conflink
279 # vps needs bind group before conflink
280 if vps; then
281 pi-nostart bind9
282 fi
283 if bitfolk; then
284 pi-nostart unbound
285 fi
286 # this needs to be before installing pacserve so we have gpg conf.
287 conflink
288 rootsshsync
289 if [[ -e /etc/rootsudoenv ]]; then
290 source /etc/rootsudoenv
291 fi
292
293
294
295 ###### bash environment setup
296 set +x
297 err-allow
298 source /etc/profile.d/environment.sh
299 export LC_USEBASHRC=t
300 # shellcheck source=./.bashrc
301 source ~/.bashrc
302 err-catch
303 $interactive || set -x
304
305 ##### use systemd-resolved for glibc resolutions
306
307 pi libnss-resolve
308
309 if [[ ! -L /etc/nsswitch.conf ]]; then
310 sudo mkdir -p /etc/resolved-nsswitch
311 sudo mv /etc/nsswitch.conf /etc/resolved-nsswitch
312 sudo ln -sf /etc/resolved-nsswitch/nsswitch.conf /etc
313 fi
314
315 f=/etc/basic-nsswitch/nsswitch.conf
316 if [[ ! -e $f ]]; then
317 sudo mkdir -p ${f%/*}
318 sudo cp /etc/nsswitch.conf $f
319 sudo sed -i --follow-symlinks 's/^ *hosts:.*/hosts: files dns myhostname/' $f
320 fi
321 case $HOSTNAME in
322 bk)
323 sudo sed -i --follow-symlinks 's/^ *hosts:.*/hosts: files dns myhostname/' /etc/nsswitch.conf
324 soff systemd-resolved
325 sudo ln -sf 127.0.0.1-resolv/stub-resolv.conf /etc/resolv.conf
326 sgo unbound
327 sgo named
328 # cautious measure to make sure bind is up
329 sleep 1
330 ;;
331 *)
332 # default is
333 # files mdns4_minimal [NOTFOUND=return] dns myhostname
334 # mdns4 is needed for my printer and for bbb webrtc, not sure exactly why.
335 # https://www.freedesktop.org/software/systemd/man/nss-resolve.html#
336 # seems more important than some potential use case.
337 # Interestingly, t9/t10 man page says use files before resolve, debian 10 says the opposite.
338 # removing files makes hostname -f not actually give the fully qualified domain name.
339 sudo sed -i --follow-symlinks 's/^ *hosts:.*/hosts: files resolve [!UNAVAIL=return] mdns4_minimal [NOTFOUND=return] myhostname/' /etc/resolved-nsswitch/nsswitch.conf
340 ;;
341 esac
342
343 f=/etc/apparmor.d/abstractions/nameservice
344 if [[ -e $f ]] && ! grep -q /etc/resolved-nsswitch/nsswitch.conf $f; then
345 sudo sed -i '/\/etc\/nsswitch.conf/a /etc/resolved-nsswitch/nsswitch.conf r,' $f
346 sudo sed -i '/\/etc\/nsswitch.conf/a /etc/basic-nsswitch/nsswitch.conf r,' $f
347 if sytemctl is-enabled apparmor; then
348 m ser reload apparmor
349 fi
350 fi
351
352
353
354 if dpkg -s -- nscd &>/dev/null; then
355 sudo apt-get -y remove --purge --auto-remove nscd
356 sudo systemctl stop nscd ||: # fails if already stopped
357 fi
358
359 # http://strugglers.net/~andy/blog/2020/12/03/starting-services-only-when-the-network-is-ready-on-debiansystemd/
360 if systemctl cat ifupdown-wait-online.service &>/dev/null; then
361 sudo systemctl enable ifupdown-wait-online.service
362 fi
363
364 if bitfolk; then
365 # remove line like this: 85.119.82.128 je.iankelling.org je
366 # it messes with hostname -f.
367 sudo sed -ri "/^127\./n;/[[:space:]]$HOSTNAME\$/d" /etc/hosts
368 fi
369
370 # libfdk just has some patent worries.
371 # https://www.gnu.org/licenses/license-list.en.html#fdk
372 if isdeb && [[ $(debian-codename) == nabia ]]; then
373 sudo dd of=/etc/apt/preferences.d/nabia-focal-missing <<'EOF'
374 Package: libfdk-aac1
375 Pin: release n=focal,o=Ubuntu
376 Pin-Priority: 500
377 EOF
378
379 # it has a dependency python-paramiko that should be
380 # python3-paramiko. the backport version is pretty close to the normal
381 # version, so i just set the pin priority low for the backport and it
382 # doesnt bother me
383 sudo dd of=/etc/apt/preferences.d/nabia-backport <<'EOF'
384 Package: ansible
385 Pin: release a=nabia-backports
386 Pin-Priority: -100
387 EOF
388
389 fi
390
391
392 # to test when these become available in trisquel, copy the package list, remove the * chars, repaplace PACKAGES below
393 # for x in PACKAGES; do hr; e $x; if [[ $x == *- ]]; then s="^$x"; dpkg -l "$x*" | sed '0,/^+++/d'; else s="^$x\$"; fi; aptitude search "~O Trisquel ~n $s"; done
394
395
396 #### setup firefox backport
397 ## ian: disabled. backports are not being published atm due to rust packaging issue
398 # if isdeb; then
399 # codename=$(debian-codename)
400 # if isdebian-stable && has_x; then
401 # s dd of=/etc/apt/sources.list.d/mozilla-iceweasel.list <<EOF
402 # deb http://mozilla.debian.net/ $codename-backports firefox-release
403 # deb-src http://mozilla.debian.net/ $codename-backports firefox-release
404 # EOF
405 # p update
406 # # take care of mozilla signing errors in previous command
407 # pi pkg-mozilla-archive-keyring
408 # fi
409 # p update
410 # fi
411
412
413 ###### arch aur wrapper setup
414 if isarch; then
415 #https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_packages
416 sudo pacman -S --noconfirm --needed base-devel jq
417 # pacaur seems to be the best, although it + cower has a few minor bugs,
418 # its design goals seem good, so, going for it.
419
420 aurpi() {
421 for p in "$@"; do
422 tempdir=$(mktemp -d)
423 pushd $tempdir
424 aurex "$p"
425 makepkg -sri --skippgpcheck --noconfirm
426 popd
427 rm -rf $tempdir
428 done
429 }
430 aurpi cower pacaur
431
432 pi pacserve
433
434 x=$(mktemp); /usr/bin/pacman.conf-insert_pacserve >$x
435 sudo dd of=/etc/pacman.conf if=$x; rm $x
436 sudo systemctl enable pacserve.service
437 sudo systemctl start pacserve.service
438
439 fi
440
441 #### update all packages
442 pup
443
444
445 ###### p1 packages install ######
446 pi ${p1[@]}
447
448
449 ######## fix evbug bug ######
450 case $(debian-codename-compat) in
451 xenial|bionic|focal)
452 # noticed in flidas. dunno if it affects any others
453 #https://bugs.launchpad.net/ubuntu/+source/module-init-tools/+bug/240553
454 #https://wiki.debian.org/KernelModuleBlacklisting
455 #common advice when searching is to use /etc/modprobe.d/blacklist.conf,
456 #but that file won't work and will get automatically reverted
457 sudo rmmod evbug ||: # might not be loaded yet
458 file=/etc/modprobe.d/evbug.conf
459 line="blacklist evbug"
460 if [[ $(cat $file) != "$line" ]]; then
461 sudo dd of=$file 2>/dev/null <<<"$line"
462 sudo depmod -a
463 sudo update-initramfs -u
464 fi
465 ;;
466 esac
467
468
469
470 #### arch specific early packages
471 case $(distro-name) in
472 arch)
473 # pkgfile is like apt-cache
474 pi pkgfile
475 sudo pkgfile --update
476 ;;
477 esac
478
479 #### enable trim
480 # enable trim for volume delete, other rare commands
481 sudo $sed -ri 's/( *issue_discards\b).*/\1 = 1/' /etc/lvm/lvm.conf
482 if encrypted; then
483 # flidas or so, these units arent built-in
484 if isdeb && ! systemctl list-unit-files | grep ^fstrim.timer &>/dev/null ; then
485 sudo cp /usr/share/doc/util-linux/examples/fstrim.{service,timer} /etc/systemd/system
486 fi
487 # does weekly trim
488 sudo systemctl enable fstrim.timer
489 fi
490
491 ##### make extra dirs
492 dirs=()
493 for dir in /mnt/{1,2,3,4,5,6,7,8,9} /nocow/t; do
494 [[ -e $dir ]] && continue
495 dirs+=($dir)
496 done
497 if (( ${#dirs[@]} )); then
498 # mkdir -p on a mounted directory will fail. so will chown if its an ro mount
499 sudo mkdir -p "${dirs[@]}"
500 sudo chown $USER:$USER "${dirs[@]}"
501 fi
502
503
504 # disabled temporarily
505 ###### setup /i
506 # if home_network; then
507 # tu /etc/fstab <<'EOF'
508 # /i/w /w none bind,noauto 0 0
509 # /i/k /k none bind,noauto 0 0
510 # EOF
511 # if ! mountpoint /kr; then
512 # sudo mkdir -p /kr
513 # sudo chown $USER:user2 /kr
514 # fi
515 # if [[ $HOSTNAME == frodo ]]; then
516 # tu /etc/fstab <<'EOF'
517 # /k /kr none bind,noauto 0 0
518 # EOF
519 # else
520 # tu /etc/fstab <<'EOF'
521 # frodo:/k /kr nfs noauto 0 0
522 # EOF
523 # fi
524 # sudo mkdir -p /i/{w,k}
525 # for dir in /{i,w,k}; do
526 # if mountpoint $dir; then continue; fi # already mounted
527 # sudo mkdir -p $dir
528 # sudo chown $USER:$USER $dir
529 # done
530 # # debian auto mounting of multi-disk encrypted btrfs is busted. It is
531 # # in jessie, and in stretch as of 11/26/2016 I have 4 disks in cryptab,
532 # # based on 3 of those, it creates .device units for /dev/mapper/dev...
533 # # then waits endlessly for them on bootup, after the /dev/mapper disks
534 # # have already been created and exist. todo: create a simple repro
535 # # for this in a vm and report it upstream.
536 # pi nfs-common
537 # sudo dd of=/root/imount <<'EOF'
538 # #!/bin/bash
539 # [[ $EUID == 0 ]] || exec sudo -E "${BASH_SOURCE[0]}" "$@"
540 # set -eE -o pipefail
541 # trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
542 # for dir in /i /k /kr /w; do
543 # if ! mountpoint $dir &>/dev/null && \
544 # awk '{print $2}' /etc/fstab | grep -xF $dir &>/dev/null; then
545 # if awk '{print $3}' /etc/fstab | grep -xF nfs &>/dev/null; then
546 # mount $dir || echo "warning: failed to mount nfs on $dir"
547 # else
548 # mount $dir
549 # fi
550 # fi
551 # done
552 # EOF
553 # sudo chmod +x /root/imount
554 # sudo dd of=/etc/systemd/system/imount.service <<EOF
555 # [Unit]
556 # Description=Mount /i and related mountpoints
557 # Before=syncthing@$USER.service
558
559 # [Service]
560 # Type=oneshot
561 # ExecStart=/root/imount
562
563 # [Install]
564 # RequiredBy=syncthing@$USER.service
565 # # note /kr needs networking, this target is the simplest way to
566 # # time it when the network should be up, but not do something
567 # # dumb like delay startup until the network is up. It happens
568 # # at some time after network.target
569 # WantedBy=multi-user.target
570 # EOF
571 # sudo systemctl daemon-reload # needed if the file was already there
572 # sudo systemctl enable imount.service
573 # sudo systemctl start imount.service
574 # fi
575 ###### end setup /i
576
577 ##### setup /nocow.
578 # a nocow dir that is common to multiple distros installed on the same system
579 dir=/nocow
580 if has_btrfs; then
581 if ! mountpoint $dir; then
582 subvol=/mnt/root/nocow
583 if [[ ! -e $subvol ]]; then
584 sudo btrfs subvolume create $subvol
585 sudo chown root:1000 $subvol
586 sudo chattr +C $subvol
587 fi
588
589 first_root_crypt=$(awk '$2 == "/" {print $1}' /etc/mtab)
590 tu /etc/fstab <<EOF
591 $first_root_crypt /nocow btrfs noatime,subvol=nocow$( ((`nproc` > 2)) && echo ,compress=zstd ) 0 0
592 EOF
593 sudo mkdir -p $dir
594 sudo chown $USER:$USER $dir
595 sudo mount $dir
596 fi
597 else
598 sudo mkdir -p $dir
599 fi
600
601 case $HOSTNAME in
602 kd)
603 tu /etc/fstab <<'EOF'
604 /dev/mapper/crypt_dev_ata-Samsung_SSD_870_QVO_8TB_S5VUNG0N900656V-part7 /d btrfs nofail,x-systemd.device-timeout=30s,x-systemd.mount-timeout=30s,noatime,compress=zstd,subvol=d 0 0
605 EOF
606 if ! mountpoint /d &>/dev/null; then
607 sudo mkdir /d
608 if [[ -d /mnt/r7/d ]]; then
609 sudo mount /d
610 fi
611 fi
612 ;;
613 esac
614
615 if bitfolk; then
616 sudo systemctl disable systemd-networkd
617 fi
618
619 ##### setup email
620 primary-setup
621
622 #### ubuntu nicety
623 if isubuntu; then
624 # disable crash report annoying dialogs.
625 sudo dd of=/etc/default/apport <<<'enabled=0'
626 fi
627
628 ##### install laptop hardware packages
629 if tp || x2 || x3 || bo || sy; then
630 case $distro in
631 debian)
632 pi task-laptop
633 ;;
634 ubuntu|trisquel)
635 # the exact packages that task-laptop would install, since ubuntu
636 # doesn\'t have this virtual in practice package.
637 pi avahi-autoipd bluetooth powertop iw wireless-tools wpasupplicant
638 ;;
639 # todo: other distros unknown
640 esac
641 fi
642
643 if has_monitor; then
644
645 # sway not packaged for t9, not bothering to build it yet since
646 # i3 doesnt seem to tear and stutter on video anymore.
647 if [[ $codename == buster ]]; then
648 pi sway xwayland
649 fi
650
651
652 ###### install X
653 # no recommends due to this bug: https://trisquel.info/en/issues/26525
654 pi --no-install-recommends i3
655
656 ##### install xinput
657 case $(distro-name) in
658 trisquel|ubuntu|debian)
659 pi xinput
660 ;;
661 esac
662
663 # recommends gets us geoclue (for darkening automatically at night i assume),
664 # which recommends modemmanager, which is annoying to fix for the model01 keyboard.
665 # commented because I dont use it much, and in nabia its named changed to redshift-gtk
666 #pi --no-install-recommends gtk-redshift
667
668 ##### setup X autostart
669 # install for multiple display managers in case we use one
670 dir=/etc/X11/xinit/xinitrc.d/
671 sudo mkdir -p $dir
672 sudo cp /a/bin/distro-setup/desktop-20-autostart.sh $dir
673 s teeu /etc/systemd/logind.conf <<'EOF'
674 HandleLidSwitch=
675 EOF
676
677 # this works on
678 dir=/etc/gdm3
679 sudo mkdir -p $dir/PostLogin
680 sudo cp /a/bin/distro-setup/desktop-20-autostart.sh $dir/PostLogin/Default
681 sudo mkdir -p /etc/lightdm/lightdm.conf.d
682 # etiona lightdm.log:
683 # [SeatDefaults] is now called [Seat:*], please update this configuration
684 sudo dd of=/etc/lightdm/lightdm.conf.d/12-iank.conf <<'EOF'
685 [Seat:*]
686 display-setup-script=/a/bin/ds/lightdm-start
687 session-setup-script=/a/bin/distro-setup/desktop-20-autostart.sh
688 EOF
689
690
691 # originally used xkbcomp, documented in input-setup.sh, this doesnt
692 # work under wayland, but its still useful for creating the config,
693 # then modifying the system files.
694 sudo sed -i.orig '/key *<KPMU> *{/,/}/s/KP_Multiply/underscore/g' /usr/share/X11/xkb/symbols/keypad
695
696 ##### basic graphical packages
697 pi konsole suckless-tools ssh-askpass
698 fi
699
700
701
702 ##### install emacs
703 if $emacs; then
704 if isarch; then
705 # emacs git build was broken last time i checked,
706 x=$(mktemp -d)
707 pushd $x
708 aurex emacs-git
709 makepkg -si --noconfirm
710 popd
711 rm -rf $x
712 pi hunspell hunspell-en
713 else
714 if $recompile; then
715 /a/bin/buildscripts/emacs
716 else
717 /a/bin/buildscripts/emacs --no-r
718 fi
719 fi
720 # the first pup command can kill off our /etc/ mod, so rerun this
721 /a/exe/ssh-emacs-setup
722 fi
723
724 if [[ $HOSTNAME == kd ]] && ! mountpoint /d &>/dev/null; then
725 cat <<'EOFOUTER'
726 # if this is a fresh reinstall, need to run something like this
727 # to restore data:
728 mkdir /mnt/r7/btrbk
729 btrbk archive /mnt/rust1/btrbk /mnt/r7/btrbk
730 btrfs sub snap /mnt/r7/btrbk/LATEST /mnt/r7/d
731 mount /d
732 EOFOUTER
733 fi
734
735
736 echo 0 >~/.local/distro-begin
737 echo "$0: $(date): ending now"
738 echo "exiting with status 0"
739 exit 0