minor 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/IANK/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|je)
323 # je should be able to get along systemd-resolved, but ive had some odd
324 # very intermittent dns failures with spamassassin, it seems it might only
325 # be happening with systemd-resolved, so just use unbound
326 # to make it consistent with the other hosts.
327 sudo sed -i --follow-symlinks 's/^ *hosts:.*/hosts: files dns myhostname/' /etc/nsswitch.conf
328 soff systemd-resolved
329 sudo ln -sf 127.0.0.1-resolv/stub-resolv.conf /etc/resolv.conf
330 sgo unbound
331 # cautious measure to make sure resolution is working
332 sleep 1
333 ;;
334 *)
335 # default is
336 # files mdns4_minimal [NOTFOUND=return] dns myhostname
337 # mdns4 is needed for my printer and for bbb webrtc, not sure exactly why.
338 # https://www.freedesktop.org/software/systemd/man/nss-resolve.html#
339 # seems more important than some potential use case.
340 # Interestingly, t9/t10 man page says use files before resolve, debian 10 says the opposite.
341 # removing files makes hostname -f not actually give the fully qualified domain name.
342 sudo sed -i --follow-symlinks 's/^ *hosts:.*/hosts: files resolve [!UNAVAIL=return] mdns4_minimal [NOTFOUND=return] myhostname/' /etc/resolved-nsswitch/nsswitch.conf
343 ;;
344 esac
345
346 case $HOSTNAME in
347 bk)
348 sgo named
349 ;;
350 esac
351
352
353 f=/etc/apparmor.d/abstractions/nameservice
354 if [[ -e $f ]] && ! grep -q /etc/resolved-nsswitch/nsswitch.conf $f; then
355 sudo sed -i '/\/etc\/nsswitch.conf/a /etc/resolved-nsswitch/nsswitch.conf r,' $f
356 sudo sed -i '/\/etc\/nsswitch.conf/a /etc/basic-nsswitch/nsswitch.conf r,' $f
357 if sytemctl is-enabled apparmor; then
358 m ser reload apparmor
359 fi
360 fi
361
362
363
364 if dpkg -s -- nscd &>/dev/null; then
365 sudo apt-get -y remove --purge --auto-remove nscd
366 sudo systemctl stop nscd ||: # fails if already stopped
367 fi
368
369 # http://strugglers.net/~andy/blog/2020/12/03/starting-services-only-when-the-network-is-ready-on-debiansystemd/
370 if systemctl cat ifupdown-wait-online.service &>/dev/null; then
371 sudo systemctl enable ifupdown-wait-online.service
372 fi
373
374 if bitfolk; then
375 # remove line like this: 85.119.82.128 je.iankelling.org je
376 # it messes with hostname -f.
377 sudo sed -ri "/^127\./n;/[[:space:]]$HOSTNAME\$/d" /etc/hosts
378 fi
379
380 # libfdk just has some patent worries.
381 # https://www.gnu.org/licenses/license-list.en.html#fdk
382 if isdeb && [[ $(debian-codename) == nabia ]]; then
383 sudo dd of=/etc/apt/preferences.d/nabia-focal-missing <<'EOF'
384 Package: libfdk-aac1
385 Pin: release n=focal,o=Ubuntu
386 Pin-Priority: 500
387 EOF
388
389 # it has a dependency python-paramiko that should be
390 # python3-paramiko. the backport version is pretty close to the normal
391 # version, so i just set the pin priority low for the backport and it
392 # doesnt bother me
393 sudo dd of=/etc/apt/preferences.d/nabia-backport <<'EOF'
394 Package: ansible
395 Pin: release a=nabia-backports
396 Pin-Priority: -100
397 EOF
398
399 fi
400
401
402 # to test when these become available in trisquel, copy the package list, remove the * chars, repaplace PACKAGES below
403 # 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
404
405
406 #### setup firefox backport
407 ## ian: disabled. backports are not being published atm due to rust packaging issue
408 # if isdeb; then
409 # codename=$(debian-codename)
410 # if isdebian-stable && has_x; then
411 # s dd of=/etc/apt/sources.list.d/mozilla-iceweasel.list <<EOF
412 # deb http://mozilla.debian.net/ $codename-backports firefox-release
413 # deb-src http://mozilla.debian.net/ $codename-backports firefox-release
414 # EOF
415 # p update
416 # # take care of mozilla signing errors in previous command
417 # pi pkg-mozilla-archive-keyring
418 # fi
419 # p update
420 # fi
421
422
423 ###### arch aur wrapper setup
424 if isarch; then
425 #https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_packages
426 sudo pacman -S --noconfirm --needed base-devel jq
427 # pacaur seems to be the best, although it + cower has a few minor bugs,
428 # its design goals seem good, so, going for it.
429
430 aurpi() {
431 for p in "$@"; do
432 tempdir=$(mktemp -d)
433 pushd $tempdir
434 aurex "$p"
435 makepkg -sri --skippgpcheck --noconfirm
436 popd
437 rm -rf $tempdir
438 done
439 }
440 aurpi cower pacaur
441
442 pi pacserve
443
444 x=$(mktemp); /usr/bin/pacman.conf-insert_pacserve >$x
445 sudo dd of=/etc/pacman.conf if=$x; rm $x
446 sudo systemctl enable pacserve.service
447 sudo systemctl start pacserve.service
448
449 fi
450
451 #### update all packages
452 pup
453
454
455 ###### p1 packages install ######
456 pi ${p1[@]}
457
458
459 ######## fix evbug bug ######
460 case $(debian-codename-compat) in
461 xenial|bionic|focal)
462 # noticed in flidas. dunno if it affects any others
463 #https://bugs.launchpad.net/ubuntu/+source/module-init-tools/+bug/240553
464 #https://wiki.debian.org/KernelModuleBlacklisting
465 #common advice when searching is to use /etc/modprobe.d/blacklist.conf,
466 #but that file won't work and will get automatically reverted
467 sudo rmmod evbug ||: # might not be loaded yet
468 file=/etc/modprobe.d/evbug.conf
469 line="blacklist evbug"
470 if [[ $(cat $file) != "$line" ]]; then
471 sudo dd of=$file 2>/dev/null <<<"$line"
472 sudo depmod -a
473 sudo update-initramfs -u
474 fi
475 ;;
476 esac
477
478
479
480 #### arch specific early packages
481 case $(distro-name) in
482 arch)
483 # pkgfile is like apt-cache
484 pi pkgfile
485 sudo pkgfile --update
486 ;;
487 esac
488
489 #### enable trim
490 # enable trim for volume delete, other rare commands
491 sudo $sed -ri 's/( *issue_discards\b).*/\1 = 1/' /etc/lvm/lvm.conf
492 if encrypted; then
493 # flidas or so, these units arent built-in
494 if isdeb && ! systemctl list-unit-files | grep ^fstrim.timer &>/dev/null ; then
495 sudo cp /usr/share/doc/util-linux/examples/fstrim.{service,timer} /etc/systemd/system
496 fi
497 # does weekly trim
498 sudo systemctl enable fstrim.timer
499 fi
500
501 ##### make extra dirs
502 dirs=()
503 for dir in /mnt/{1,2,3,4,5,6,7,8,9} /nocow/t; do
504 [[ -e $dir ]] && continue
505 dirs+=($dir)
506 done
507 if (( ${#dirs[@]} )); then
508 # mkdir -p on a mounted directory will fail. so will chown if its an ro mount
509 sudo mkdir -p "${dirs[@]}"
510 sudo chown $USER:$USER "${dirs[@]}"
511 fi
512
513
514 # disabled temporarily
515 ###### setup /i
516 # if home_network; then
517 # tu /etc/fstab <<'EOF'
518 # /i/w /w none bind,noauto 0 0
519 # /i/k /k none bind,noauto 0 0
520 # EOF
521 # if ! mountpoint /kr; then
522 # sudo mkdir -p /kr
523 # sudo chown $USER:user2 /kr
524 # fi
525 # if [[ $HOSTNAME == frodo ]]; then
526 # tu /etc/fstab <<'EOF'
527 # /k /kr none bind,noauto 0 0
528 # EOF
529 # else
530 # tu /etc/fstab <<'EOF'
531 # frodo:/k /kr nfs noauto 0 0
532 # EOF
533 # fi
534 # sudo mkdir -p /i/{w,k}
535 # for dir in /{i,w,k}; do
536 # if mountpoint $dir; then continue; fi # already mounted
537 # sudo mkdir -p $dir
538 # sudo chown $USER:$USER $dir
539 # done
540 # # debian auto mounting of multi-disk encrypted btrfs is busted. It is
541 # # in jessie, and in stretch as of 11/26/2016 I have 4 disks in cryptab,
542 # # based on 3 of those, it creates .device units for /dev/mapper/dev...
543 # # then waits endlessly for them on bootup, after the /dev/mapper disks
544 # # have already been created and exist. todo: create a simple repro
545 # # for this in a vm and report it upstream.
546 # pi nfs-common
547 # sudo dd of=/root/imount <<'EOF'
548 # #!/bin/bash
549 # [[ $EUID == 0 ]] || exec sudo -E "${BASH_SOURCE[0]}" "$@"
550 # set -eE -o pipefail
551 # trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
552 # for dir in /i /k /kr /w; do
553 # if ! mountpoint $dir &>/dev/null && \
554 # awk '{print $2}' /etc/fstab | grep -xF $dir &>/dev/null; then
555 # if awk '{print $3}' /etc/fstab | grep -xF nfs &>/dev/null; then
556 # mount $dir || echo "warning: failed to mount nfs on $dir"
557 # else
558 # mount $dir
559 # fi
560 # fi
561 # done
562 # EOF
563 # sudo chmod +x /root/imount
564 # sudo dd of=/etc/systemd/system/imount.service <<EOF
565 # [Unit]
566 # Description=Mount /i and related mountpoints
567 # Before=syncthing@$USER.service
568
569 # [Service]
570 # Type=oneshot
571 # ExecStart=/root/imount
572
573 # [Install]
574 # RequiredBy=syncthing@$USER.service
575 # # note /kr needs networking, this target is the simplest way to
576 # # time it when the network should be up, but not do something
577 # # dumb like delay startup until the network is up. It happens
578 # # at some time after network.target
579 # WantedBy=multi-user.target
580 # EOF
581 # sudo systemctl daemon-reload # needed if the file was already there
582 # sudo systemctl enable imount.service
583 # sudo systemctl start imount.service
584 # fi
585 ###### end setup /i
586
587 ##### setup /nocow.
588 # a nocow dir that is common to multiple distros installed on the same system
589 dir=/nocow
590 if has_btrfs; then
591 if ! mountpoint $dir; then
592 subvol=/mnt/root/nocow
593 if [[ ! -e $subvol ]]; then
594 sudo btrfs subvolume create $subvol
595 sudo chown root:1000 $subvol
596 sudo chattr +C $subvol
597 fi
598
599 first_root_crypt=$(awk '$2 == "/" {print $1}' /etc/mtab)
600 tu /etc/fstab <<EOF
601 $first_root_crypt /nocow btrfs noatime,subvol=nocow$( ((`nproc` > 2)) && echo ,compress=zstd ) 0 0
602 EOF
603 sudo mkdir -p $dir
604 sudo chown $USER:$USER $dir
605 sudo mount $dir
606 fi
607 else
608 sudo mkdir -p $dir
609 fi
610
611 case $HOSTNAME in
612 kd)
613 tu /etc/fstab <<'EOF'
614 /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
615 EOF
616 if ! mountpoint /d &>/dev/null; then
617 sudo mkdir /d
618 if [[ -d /mnt/r7/d ]]; then
619 sudo mount /d
620 fi
621 fi
622 ;;
623 esac
624
625 if bitfolk; then
626 sudo systemctl disable systemd-networkd
627 fi
628
629 ##### setup email
630 primary-setup
631
632 #### ubuntu nicety
633 if isubuntu; then
634 # disable crash report annoying dialogs.
635 sudo dd of=/etc/default/apport <<<'enabled=0'
636 fi
637
638 ##### install laptop hardware packages
639 if tp || x2 || x3 || bo || sy; then
640 case $distro in
641 debian)
642 pi task-laptop
643 ;;
644 ubuntu|trisquel)
645 # the exact packages that task-laptop would install, since ubuntu
646 # doesn\'t have this virtual in practice package.
647 pi avahi-autoipd bluetooth powertop iw wireless-tools wpasupplicant
648 ;;
649 # todo: other distros unknown
650 esac
651 fi
652
653 if has_monitor; then
654
655 # sway not packaged for t9, not bothering to build it yet since
656 # i3 doesnt seem to tear and stutter on video anymore.
657 if [[ $codename == buster ]]; then
658 pi sway xwayland
659 fi
660
661
662 ###### install X
663 # no recommends due to this bug: https://trisquel.info/en/issues/26525
664 pi --no-install-recommends i3
665
666 ##### install xinput
667 case $(distro-name) in
668 trisquel|ubuntu|debian)
669 pi xinput
670 ;;
671 esac
672
673 # recommends gets us geoclue (for darkening automatically at night i assume),
674 # which recommends modemmanager, which is annoying to fix for the model01 keyboard.
675 # commented because I dont use it much, and in nabia its named changed to redshift-gtk
676 #pi --no-install-recommends gtk-redshift
677
678 ##### setup X autostart
679 # install for multiple display managers in case we use one
680 dir=/etc/X11/xinit/xinitrc.d/
681 sudo mkdir -p $dir
682 sudo cp /a/bin/distro-setup/desktop-20-autostart.sh $dir
683 s teeu /etc/systemd/logind.conf <<'EOF'
684 HandleLidSwitch=
685 EOF
686
687 # this works on
688 dir=/etc/gdm3
689 sudo mkdir -p $dir/PostLogin
690 sudo cp /a/bin/distro-setup/desktop-20-autostart.sh $dir/PostLogin/Default
691 sudo mkdir -p /etc/lightdm/lightdm.conf.d
692 # etiona lightdm.log:
693 # [SeatDefaults] is now called [Seat:*], please update this configuration
694 sudo dd of=/etc/lightdm/lightdm.conf.d/12-iank.conf <<'EOF'
695 [Seat:*]
696 display-setup-script=/a/bin/ds/lightdm-start
697 session-setup-script=/a/bin/distro-setup/desktop-20-autostart.sh
698 EOF
699
700
701 # originally used xkbcomp, documented in input-setup.sh, this doesnt
702 # work under wayland, but its still useful for creating the config,
703 # then modifying the system files.
704 sudo sed -i.orig '/key *<KPMU> *{/,/}/s/KP_Multiply/underscore/g' /usr/share/X11/xkb/symbols/keypad
705
706 ##### basic graphical packages
707 pi konsole suckless-tools ssh-askpass
708 fi
709
710
711
712 ##### install emacs
713 if $emacs; then
714 if isarch; then
715 # emacs git build was broken last time i checked,
716 x=$(mktemp -d)
717 pushd $x
718 aurex emacs-git
719 makepkg -si --noconfirm
720 popd
721 rm -rf $x
722 pi hunspell hunspell-en
723 else
724 if $recompile; then
725 /a/bin/buildscripts/emacs
726 else
727 /a/bin/buildscripts/emacs --no-r
728 fi
729 fi
730 # the first pup command can kill off our /etc/ mod, so rerun this
731 /a/exe/ssh-emacs-setup
732 fi
733
734 if [[ $HOSTNAME == kd ]] && ! mountpoint /d &>/dev/null; then
735 cat <<'EOFOUTER'
736 # if this is a fresh reinstall, need to run something like this
737 # to restore data:
738 mkdir /mnt/r7/btrbk
739 btrbk archive /mnt/rust1/btrbk /mnt/r7/btrbk
740 btrfs sub snap /mnt/r7/btrbk/LATEST /mnt/r7/d
741 mount /d
742 EOFOUTER
743 fi
744
745
746 echo 0 >~/.local/distro-begin
747 echo "$0: $(date): ending now"
748 echo "exiting with status 0"
749 exit 0