minor docs
[distro-setup] / distro-end
1 #!/bin/bash
2 # Copyright (C) 2019 Ian Kelling
3 # SPDX-License-Identifier: AGPL-3.0-or-later
4
5 # shellcheck source=/a/bin/ds/.bashrc
6 export LC_USEBASHRC=t; if [[ -s ~/.bashrc ]]; then . ~/.bashrc; fi
7
8 ### setup
9 source /a/bin/errhandle/err
10 src="$(readlink -f -- "${BASH_SOURCE[0]}")"; src=${src%/*} # directory of this file
11
12 if [[ $EUID == 0 ]]; then
13 echo "$0: error: run as regular user" >&2
14 exit 1
15 fi
16
17 err-cleanup() {
18 echo 1 >~/.local/distro-end
19 }
20
21 # shellcheck source=./pkgs
22 source $src/pkgs
23
24 echo "$0: $(date) starting now)"
25 # see example of usage to understand.
26 end_msg() {
27 local y
28 IFS= read -r -d '' y ||:
29 end_msg_var+="$y"
30 }
31 end() {
32 e "$end_msg_var"
33 echo 0 >~/.local/distro-end
34 if $pending_reboot; then
35 echo "$0: pending reboot and then finished. doing it now."
36 echo "exiting with status 0"
37 sudo reboot now
38 else
39 echo "$0: $(date): ending now)"
40 echo "exiting with status 0"
41 fi
42 exit 0
43 }
44 pre="${0##*/}:"
45 sudo() {
46 printf "$pre sudo %s\n" "$*"
47 SUDOD="$PWD" command sudo "$@";
48 }
49 m() { printf "$pre %s\n" "$*"; "$@"; }
50 e() { printf "$pre %s\n" "$*"; }
51 distro=$(distro-name)
52 codename=$(debian-codename)
53 codename_compat=$(debian-codename-compat)
54 pending_reboot=false
55 sed="sed --follow-symlinks"
56
57 # when we schroot, it will fail if we are in a directory that doesnt exist in the chroot
58 cd /
59
60 ## template:
61 # case $distro in
62 # esac
63
64 case $HOSTNAME in
65 li|bk|je) : ;;
66 *)
67 # get sudo pass cached right away
68 if ! sudo -nv 2>/dev/null; then
69 sudo -v
70 fi
71 ;;
72 esac
73
74 # old repo. remove when all machines updated
75 sudo rm -fv /etc/apt/sources.list.d/wireguard-ubuntu-wireguard-bionic.list
76 # remove old file
77 sudo rm -fv /etc/apt/preferences.d/minetest
78
79 #### initial packages
80 pup
81 if isdeb; then
82 pi aptitude
83 fi
84
85 # avoid prompts
86 sudo debconf-set-selections <<EOF
87 popularity-contest popularity-contest/participate boolean true
88 EOF
89
90 ########### begin section including vps ################
91 pi ${p2[@]}
92
93 conflink
94
95 sudo rm -fv
96
97 # no equivalent in other distros:
98 if isdeb && pcheck apt-file; then
99 # this condition is just a speed optimization
100 pi apt-file
101 sudo apt-file update
102 fi
103
104
105 # disable motd junk.
106 case $distro in
107 debian)
108 # allows me to pipe with ssh -t, and gets rid of spam
109 # http://forums.debian.net/viewtopic.php?f=5&t=85822
110 # i'd rather disable the service than comment the init file
111 # this says disabling the service, it will still get restarted
112 # but this script doesn't do anything on restart, so it should be fine
113 sudo truncate -s0 /var/run/motd.dynamic
114 ;;
115 trisquel|ubuntu)
116 # this isn't a complete solution. It still shows me when updates are available,
117 # but it's no big deal.
118 sudo rm -fv /etc/update-motd.d/10-help-text /etc/update-motd.d/00-header
119 ;;
120 esac
121
122
123
124
125
126
127 # dogcam setup. not using atm
128 # case $HOSTNAME in
129 # lj|li)
130 # /a/bin/webcam/install-server
131 # ;;
132 # kw)
133 # /a/bin/webcam/install-client
134 # ;;
135 # esac
136
137
138 ## not actually using prometheus just yet
139 # # office is not exposed to internet yet
140 # if [[ $HOSTNAME != kw ]]; then
141 # ## prometheus node exporter setup
142 # web-conf -f 9100 -p 9101 apache2 $(hostname -f) <<'EOF'
143 # #https://httpd.apache.org/docs/2.4/mod/mod_authn_core.html#authtype
144 # # https://stackoverflow.com/questions/5011102/apache-reverse-proxy-with-basic-authentication
145 # <Location />
146 # AllowOverride None
147 # AuthType basic
148 # AuthName "Authentication Required"
149 # # setup one time, with root:www-data, 640
150 # AuthUserFile "/etc/prometheus-htpasswd"
151 # Require valid-user
152 # </Location>
153 # EOF
154 # fi
155
156
157
158
159 pi debootstrap
160 ######### begin universal pinned packages ######
161 case $(debian-codename) in
162 etiona|flidas|nabia|aramo)
163 sudo rm -fv /etc/apt/preferences.d/etiona-buster
164 sd /etc/apt/preferences.d/trisquel-debian <<EOF
165 Explanation: Debian* includes Debian + Debian Backports
166 Package: *
167 Pin: release o=Debian*
168 Pin-Priority: -100
169 EOF
170 ;;&
171 # needed for debootstrap scripts for fai since fai requires debian
172 flidas)
173 # moved to fai
174 #curl http://archive.ubuntu.com/ubuntu/project/ubuntu-archive-keyring.gpg | s apt-key add -
175 sd /etc/apt/preferences.d/flidas-xenial <<EOF
176 Package: *
177 Pin: release a=xenial
178 Pin-Priority: -100
179
180 Package: *
181 Pin: release a=xenial-updates
182 Pin-Priority: -100
183
184 Package: *
185 Pin: release a=xenial-security
186 Pin-Priority: -100
187
188 Package: firefox
189 Pin: release n=xenial
190 Pin-Priority: 500
191 EOF
192 sd /etc/apt/sources.list.d/xenial.list 2>/dev/null <<EOF
193 deb http://us.archive.ubuntu.com/ubuntu/ xenial main
194 deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main
195 deb http://us.archive.ubuntu.com/ubuntu/ xenial-security main
196 EOF
197
198 if ! apt-key list | grep /C0B21F32 &>/dev/null; then
199 # moved to fai
200 #sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32
201 sd /etc/apt/preferences.d/flidas-bionic <<EOF
202 Package: *
203 Pin: release a=bionic
204 Pin-Priority: -100
205
206 Package: *
207 Pin: release a=bionic-updates
208 Pin-Priority: -100
209
210 Package: *
211 Pin: release a=bionic-security
212 Pin-Priority: -100
213 EOF
214 fi
215
216 # better to run btrfs-progs which matches our kernel version
217 # (note, renamed from btrfs-tools)
218 sd /etc/apt/preferences.d/btrfs-progs <<EOF
219 Package: btrfs-progs libzstd1
220 Pin: release a=bionic
221 Pin-Priority: 1005
222
223 Package: btrfs-progs libzstd1
224 Pin: release a=bionic-updates
225 Pin-Priority: 1005
226
227 Package: btrfs-progs libzstd1
228 Pin: release a=bionic-security
229 Pin-Priority: 1005
230 EOF
231
232
233 t=$(mktemp)
234 cat >$t <<EOF
235 deb http://us.archive.ubuntu.com/ubuntu/ bionic main
236 deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main
237 deb http://us.archive.ubuntu.com/ubuntu/ bionic-security main
238 EOF
239 f=/etc/apt/sources.list.d/bionic.list
240 if ! diff -q $t $f; then
241 sudo cp $t $f
242 sudo chmod 644 $f
243 m p update
244 fi
245
246 # no special reason, but its better for btrfs-progs to
247 # be closer to our kernel version
248 pi btrfs-progs
249
250 if [[ ! -e /usr/share/debootstrap/scripts/xenial ]]; then
251 t=$(mktemp -d)
252 cd $t
253 m aptitude download debootstrap/xenial
254 m ex ./*
255 sudo cp ./usr/share/debootstrap/scripts/* /usr/share/debootstrap/scripts
256 fi
257
258 sd /etc/apt/preferences.d/flidas-etiona <<EOF
259 Package: *
260 Pin: release a=etiona
261 Pin-Priority: -100
262
263 Package: *
264 Pin: release a=etiona-updates
265 Pin-Priority: -100
266
267 Package: *
268 Pin: release a=etiona-security
269 Pin-Priority: -100
270
271 Package: *
272 Pin: release a=etiona-backports
273 Pin-Priority: -100
274 EOF
275
276 t=$(mktemp)
277 cat >$t <<EOF
278 deb http://mirror.fsf.org/trisquel/ etiona main
279 deb http://mirror.fsf.org/trisquel/ etiona-updates main
280 deb http://archive.trisquel.info/trisquel/ etiona-security main
281 deb http://mirror.fsf.org/trisquel/ etiona-backports main
282 EOF
283 f=/etc/apt/sources.list.d/etiona.list
284 if ! diff -q $t $f; then
285 sudo cp $t $f
286 n s chmod 644 $f
287 m p update
288 fi
289
290 sd /etc/apt/preferences.d/debian-goodies <<EOF
291 Package: debian-goodies
292 Pin: release n=etiona
293 Pin-Priority: 1005
294 EOF
295
296
297 # dont use buster because it causes dist-upgrade to think its downgrading
298 # packages while really just reinstalling the same version.
299 f=/etc/apt/apt.conf.d/01iank
300 sudo rm -fv $f
301 # # stupid buster uses some key algorithm not supported by flidas gpg that apt uses.
302 # sd /etc/apt/apt.conf.d/01iank <<'EOF'
303 # Acquire::AllowInsecureRepositories "true";
304 # EOF
305
306 f=/etc/apt/sources.list.d/buster.list
307 sudo rm -fv $f
308
309 # newer version needed for false positive in checkrestart.
310 # I did buster at first, but other problem above with having
311 # buster repos. not sure if the false positive exists in etiona.
312 pi debian-goodies
313
314 sd /etc/apt/preferences.d/shellcheck <<EOF
315 Package: shellcheck
316 Pin: release a=etiona
317 Pin-Priority: 1005
318
319 Package: shellcheck
320 Pin: release a=etiona-updates
321 Pin-Priority: 1005
322
323 Package: shellcheck
324 Pin: release a=etiona-security
325 Pin-Priority: 1005
326 EOF
327
328 sd /etc/apt/preferences.d/bash <<EOF
329 Package: bash
330 Pin: release a=etiona
331 Pin-Priority: 1005
332
333 Package: bash
334 Pin: release a=etiona-updates
335 Pin-Priority: 1005
336
337 Package: bash
338 Pin: release a=etiona-security
339 Pin-Priority: 1005
340 EOF
341
342
343 ;;&
344 aramo|nabia|etiona)
345 # for ziva
346 #p install --no-install-recommends minetest/buster libleveldb1d/buster libncursesw6/buster libtinfo6/buster
347 doupdate=false
348 # shellcheck disable=SC2043 # in case we want more than 1 in the loop later.
349 for n in bullseye; do
350 f=/etc/apt/sources.list.d/$n.list
351 t=$(mktemp)
352 case $n in
353 bullseye)
354 cat >$t <<'EOF'
355 EOF
356 cat >$t <<EOF
357 deb http://deb.debian.org/debian bullseye main
358 deb-src http://deb.debian.org/debian bullseye main
359
360 deb http://deb.debian.org/debian-security/ bullseye-security main
361 deb-src http://deb.debian.org/debian-security/ bullseye-security main
362
363 deb http://deb.debian.org/debian bullseye-updates main
364 deb-src http://deb.debian.org/debian bullseye-updates main
365
366 deb http://http.debian.net/debian bullseye-backports main
367 deb-src http://http.debian.net/debian bullseye-backports main
368 EOF
369 ;;
370 esac
371
372 if ! diff -q $t $f; then
373 doupdate=true
374 s cp $t $f
375 s chmod 644 $f
376 fi
377 done
378 if $doupdate; then
379 curl -s https://ftp-master.debian.org/keys/archive-key-10-security.asc | sudo apt-key add -
380 curl -s https://ftp-master.debian.org/keys/archive-key-10.asc | sudo apt-key add -
381 p update
382 fi
383
384 if [[ ! -e /usr/share/debootstrap/scripts/bullseye ]]; then
385 t=$(mktemp -d)
386 cd $t
387 m aptitude download debootstrap/bullseye
388 m ex ./*
389 sudo cp ./usr/share/debootstrap/scripts/* /usr/share/debootstrap/scripts
390 fi
391
392 ;;&
393 etiona)
394 sd /etc/apt/preferences.d/focal <<'EOF'
395 Package: *
396 Pin: release n=focal,o=Ubuntu
397 Pin-Priority: -100
398 EOF
399
400 sd /etc/apt/preferences.d/spamassassin <<'EOF'
401 Package: spamassassin sa-compile spamc
402 Pin: release n=focal,o=Ubuntu
403 Pin-Priority: 500
404 EOF
405 sd /etc/apt/preferences.d/spamassassin <<'EOF'
406 Package: spamassassin sa-compile spamc
407 Pin: release n=focal,o=Ubuntu
408 Pin-Priority: 500
409 EOF
410 sd /etc/apt/preferences.d/psd <<'EOF'
411 Package: profile-sync-daemon
412 Pin: release n=focal,o=Ubuntu
413 Pin-Priority: 500
414 EOF
415
416 f=/etc/apt/sources.list.d/focal.list
417 t=$(mktemp)
418 cat >$t <<'EOF'
419 deb http://us.archive.ubuntu.com/ubuntu/ focal main universe
420 deb http://us.archive.ubuntu.com/ubuntu/ focal-updates main universe
421 deb http://us.archive.ubuntu.com/ubuntu/ focal-security main universe
422 EOF
423 if ! diff -q $t $f; then
424 sudo dd if=$t of=$f status=none
425 p update
426 fi
427
428
429
430 sd /etc/apt/preferences.d/nabia-etiona <<'EOF'
431 Package: *
432 Pin: release n=nabia*,o=Trisquel
433 Pin-Priority: -100
434 EOF
435
436 f=/etc/apt/sources.list.d/nabia.list
437 t=$(mktemp)
438 cat >$t <<'EOF'
439 deb http://mirror.fsf.org/trisquel/ nabia main
440 deb-src http://mirror.fsf.org/trisquel/ nabia main
441
442 deb http://mirror.fsf.org/trisquel/ nabia-updates main
443 deb-src http://mirror.fsf.org/trisquel/ nabia-updates main
444
445 deb http://archive.trisquel.info/trisquel/ nabia-security main
446 deb-src http://archive.trisquel.info/trisquel/ nabia-security main
447
448 # Uncomment this lines to enable the backports optional repository
449 deb http://mirror.fsf.org/trisquel/ nabia-backports main
450 deb-src http://mirror.fsf.org/trisquel/ nabia-backports main
451 EOF
452 if ! diff -q $t $f; then
453 sudo dd if=$t of=$f status=none
454 p update
455 fi
456
457 # duplicated in fai. Pin for bionic + ubuntu so that ppas dont get
458 # matched.
459 sd /etc/apt/preferences.d/etiona-bionic <<'EOF'
460 Package: *
461 Pin: release n=bionic,o=Ubuntu
462 Pin-Priority: -100
463 Package: firefox
464 Pin: release n=bionic,o=Ubuntu
465 Pin-Priority: 500
466 EOF
467
468 sd /etc/apt/preferences.d/etiona-sa <<'EOF'
469 Package: *
470 Pin: release n=bionic,o=Ubuntu
471 Pin-Priority: -100
472 EOF
473
474 ;;&
475 nabia)
476 sd /etc/apt/preferences.d/aramo-nabia <<'EOF'
477 Package: *
478 Pin: release n=aramo*,o=Trisquel
479 Pin-Priority: -100
480 EOF
481 f=/etc/apt/sources.list.d/aramo.list
482 t=$(mktemp)
483 cat >$t <<'EOF'
484 deb http://mirror.fsf.org/trisquel/ aramo main
485 deb-src http://mirror.fsf.org/trisquel/ aramo main
486
487 deb http://mirror.fsf.org/trisquel/ aramo-updates main
488 deb-src http://mirror.fsf.org/trisquel/ aramo-updates main
489
490 deb http://archive.trisquel.info/trisquel/ aramo-security main
491 deb-src http://archive.trisquel.info/trisquel/ aramo-security main
492
493 # Uncomment this lines to enable the backports optional repository
494 deb http://mirror.fsf.org/trisquel/ aramo-backports main
495 deb-src http://mirror.fsf.org/trisquel/ aramo-backports main
496 EOF
497 if ! diff -q $t $f; then
498 sudo dd if=$t of=$f status=none
499 p update
500 fi
501
502 ;;&
503 *)
504 if isdeb; then
505 pi debian-goodies shellcheck
506 fi
507 ;;
508 esac
509
510 case $codename_compat in
511 jammy)
512 s systemctl enable --now ssh-agent-iank
513 ;;
514 esac
515
516 case $codename_compat in
517 focal)
518 sd /etc/apt/preferences.d/nabia-btrfs-progs <<'EOF'
519 Package: btrfs-progs
520 Pin: release a=buster-backports
521 Pin-Priority: 500
522 EOF
523 p install btrfs-progs
524 ;;
525 esac
526
527
528 # 2020-03-03 old file
529 s rm -fv /etc/apt/preferences.d/radicale
530 ######### end universal pinned packages ######
531
532
533 case $codename in
534 etiona)
535 sd /etc/apt/preferences.d/obs <<EOF
536 Package: libfdk-aac1
537 Pin: release n=bionic
538 Pin-Priority: 500
539 EOF
540 sd /etc/apt/preferences.d/chromium <<EOF
541 Package: chromium-*
542 Pin: release n=bionic
543 Pin-Priority: 500
544 EOF
545 ;;
546 nabia)
547 # note, to get the latest, it would be n=bullseye*
548 # but that has conflicting package versions, so this does the old one.
549 # I only use it for special rare purposes. Just keep in mind it is an
550 # outdated insecure version.
551 sd /etc/apt/preferences.d/chromium-bullseye <<EOF
552 Package: chromium chromium-* libicu67 libjpeg62-turbo libjsoncpp24 libre2-9 libwebpmux3
553 Pin: release o=Debian*,n=bullseye
554 Pin-Priority: 500
555 EOF
556 ;;
557 aramo)
558 # obs dependency not in trisquel
559 sd /etc/apt/preferences.d/obs <<EOF
560 Package: libfdk-aac2
561 Pin: release n=jammy,o=Ubuntu
562 Pin-Priority: 500
563 EOF
564 ;;
565 esac
566
567
568
569 ##### begin automatic upgrades (after checkrestart has been installed) ####
570 # if apt-config-auto-update is installed,
571 # it also has similar config, in a file 10something,
572 # but i think his overrides it since its higher number.
573 # This file was part of the automatic-updates package,
574 # and it has a configu option to not get new package lists,
575 # which seems pretty stupid to me, you cant actually upgrade
576 # anything if you dont have the new package list.
577 sd /etc/apt/apt.conf.d/20auto-upgrades <<'EOF'
578 APT::Periodic::Update-Package-Lists "1";
579 APT::Periodic::Download-Upgradeable-Packages "1";
580 APT::Periodic::AutocleanInterval "7";
581 APT::Periodic::Unattended-Upgrade "1";
582 EOF
583
584 # fyi: default file has comments about available options,
585 # you may want to read that, do pkx unattended-upgrades
586 # default is just security updates. this list found from reading
587 # match_whitelist_string() in $(which unattended-upgrades)
588 sd /etc/apt/apt.conf.d/50unattended-upgrades <<EOF
589 Unattended-Upgrade::Mail "root";
590 Unattended-Upgrade::MailOnlyOnError "true";
591 Unattended-Upgrade::Remove-Unused-Dependencies "true";
592 Unattended-Upgrade::Origins-Pattern {
593 "o=*,l=*,a=*,c=*,site=*,n=*";
594 };
595 EOF
596
597 # old files
598 sudo rm -f /etc/cron.d/unattended-upgrade-reboot /usr/local/bin/zelous-unattended-reboot /etc/cron.d/myupgrade
599
600 # myupgrade cron exists in /etc/cron.d/ian
601
602 ##### end automatic upgrades ####
603
604
605 # commented in case i want to use this sometime later
606 # sd /etc/apt/preferences.d/buster-backports <<EOF
607 # Package: *
608 # Pin: release a=buster-backports
609 # Pin-Priority: 500
610 # EOF
611
612
613 ###### begin website setup
614 case $HOSTNAME in
615 li|bk|je)
616 pi bind9
617 f=/var/lib/bind/db.b8.nz
618 if [[ ! -e $f ]]; then
619 dnsb8
620 fi
621
622 s /c/roles/prom-export/files/simple/usr/local/bin/fsf-install-node-exporter -l
623
624 # ex for exporter
625 web-conf -p 9101 -f 9100 - apache2 ${HOSTNAME}ex.b8.nz <<'EOF'
626 <Location "/">
627 AuthType Basic
628 AuthName "basic_auth"
629 # created with
630 # htpasswd -c prometheus-export-htpasswd USERNAME
631 AuthUserFile "/etc/prometheus-export-htpasswd"
632 Require valid-user
633 </Location>
634 EOF
635 ;;&
636
637 bk)
638 sgo wg-quick@wgmail
639
640 # i just dont feel like setting up a special purpose ssh key to do this automatically.
641 end_msg <<'EOF'
642 # run this once for bk on local machine:
643 # only used for old openvpn setup
644 /a/exe/vpn-mk-client-cert -c bk.b8.nz -b expertpath -n mail li.iankelling.org
645 EOF
646 end
647 ;;
648 je)
649 end
650 ;;
651 li)
652
653 m /a/h/setup.sh iankelling.org
654
655 # start mumble only when im going to use it, since i dont use it much
656 pi-nostart mumble-server
657 sudo $sed -ri "s/^ *(serverpassword=).*/\1$(< /a/bin/bash_unpublished/mumble_pass)/" /etc/mumble-server.ini
658
659 # do certificate to avoid warning about unsigned cert,
660 # which is overkill for my use, but hey, I'm cool, I know
661 # how to do this.
662 m web-conf apache2 mumble.iankelling.org
663 sudo rm -fv /etc/apache2/sites-enabled/mumble.iankelling.org
664
665 # general vpn for as needed use
666 vpn-server-setup -d -r -4 10.5.5 -p 443 -n hole
667
668 # todo: consider if this should exist for the
669 # other vpn server
670 teeu /etc/openvpn/server/hole.conf <<'EOF'
671 client-to-client
672 EOF
673
674 sd /etc/openvpn/client-config-hole/kd <<'EOF'
675 ifconfig-push 10.5.5.2 255.255.255.0
676 EOF
677 sd /etc/openvpn/client-config-hole/tp <<'EOF'
678 ifconfig-push 10.5.5.3 255.255.255.0
679 EOF
680 sd /etc/openvpn/client-config-hole/frodo <<'EOF'
681 ifconfig-push 10.5.5.5 255.255.255.0
682 EOF
683 sd /etc/openvpn/client-config-hole/x2 <<'EOF'
684 ifconfig-push 10.5.5.7 255.255.255.0
685 EOF
686 sd /etc/openvpn/client-config-hole/x3 <<'EOF'
687 ifconfig-push 10.5.5.8 255.255.255.0
688 EOF
689 sd /etc/openvpn/client-config-hole/kw <<'EOF'
690 ifconfig-push 10.5.5.9 255.255.255.0
691 EOF
692 sd /etc/openvpn/client-config-hole/sy <<'EOF'
693 ifconfig-push 10.5.5.12 255.255.255.0
694 EOF
695 sd /etc/openvpn/client-config-hole/bo <<'EOF'
696 ifconfig-push 10.5.5.13 255.255.255.0
697 EOF
698 sd /etc/openvpn/client-config-hole/onep9 <<'EOF'
699 ifconfig-push 10.5.5.14 255.255.255.0
700 EOF
701 # todo: add x8?
702
703
704 # for adding cert to system with /p
705 #
706 # host=frodo
707 #mkc /p/c/machine_specific/$host/filesystem/etc/openvpn/client
708 #vpn-mk-client-cert -b $host -n hole -r iankelling.org
709 #s chown -R iank:iank .
710 #
711 # example of adding to remote system 107,
712 # vpn-mk-client-cert -n hole -c 10.2.0.107 -b hd8 iankelling.org
713 #
714 # for wireguard hole vpn, use function:
715 # wghole
716 # eg:
717 # wghole bo 28
718 # if it is going to want to connect to transmission-daemon on ok
719 # wghole bo 28 10.173.0.2/32
720
721 # requested from linode via a support ticket.
722 # https://www.linode.com/docs/networking/an-overview-of-ipv6-on-linode/
723 # ipv6 stuff pieced together
724 # via slightly wrong information from
725 # https://github.com/angristan/openvpn-install/blob/master/openvpn-install.sh
726 # https://community.openvpn.net/openvpn/wiki/IPv6
727 # and man openvpn.
728 #
729 # This uses a public /64, but afaik, that is not needed for my
730 # current use case, since I'm doing ipv6 nat, they could be private
731 # and nat to a public address. I'm doing ipv6 nat in order to have 2
732 # vpn clients that externally share the same ip when sending so they
733 # share ip reputation. Note, the eth0 and tunx needed to be
734 # different subnets. On the same, I saw some neighbor packet go
735 # unanswered, tcpdump showed packets getting lost. I tried splitting the
736 # /64, it didn't work but I didn't investigate closely.
737
738
739 # not starting as i intend to replace it
740 m vpn-server-setup -s -i tunmail -n mail -d -6 2600:3c00:e002:3800::/64 2600:3c00:e002:3800::1/64
741 sudo tee /etc/openvpn/client-config-mail/mailclient <<'EOF'
742 ifconfig-push 10.8.0.4 255.255.255.0
743 ifconfig-ipv6-push 2600:3c00:e002:3800::4/64
744 EOF
745 sudo tee /etc/openvpn/client-config-mail/expertpath <<'EOF'
746 ifconfig-push 10.8.0.5 255.255.255.0
747 ifconfig-ipv6-push 2600:3c00:e002:3800::5/64
748 EOF
749
750
751 sudo dd of=/etc/systemd/system/vpn-mail-forward.service <<'EOF'
752 [Unit]
753 Description=Turns on iptables mail nat
754 BindsTo=openvpn-server@mail.service
755
756 [Service]
757 Type=oneshot
758 RemainAfterExit=yes
759 ExecStart=/a/bin/distro-setup/vpn-mail-forward tunmail start
760 ExecStop=/a/bin/distro-setup/vpn-mail-forward tunmail stop
761
762 [Install]
763 RequiredBy=openvpn-server@mail.service
764 EOF
765 ser daemon-reload
766
767
768 # needed for li's local mail delivery.
769 tu /etc/hosts <<<"10.8.0.4 mx.iankelling.org"
770
771 # wgmail handles this.
772 #sgo vpn-mail-forward.service
773 # old:
774 #sgo openvpn-server@mail
775 sgo wg-quick@wgmail
776
777 # setup let's encrypt cert
778 m web-conf apache2 mail.iankelling.org
779 # TODO, i expanded the above cert manually to mx.iankelling.org, this should be captured
780 # in the automation here. We use mail.iankelling.org as our ehlo name when sending mail
781 # but our mx record is mx.iankelling.org. Initially I was just using mail.iankelling.org,
782 # but the problem is I want multiple ips to be able to identify as mail.iankelling.org,
783 # but a subset to be mx.iankelling.org. Afaik, there is no problem with having
784 # our mail cert be for mail.iankelling.org, and have people connect to mx.ian...,
785 # but it doesn't make logical sense to do this.
786 sudo rm -fv /etc/apache2/sites-enabled/mail.iankelling.org{,-redir}.conf
787 ser reload apache2
788
789 a2enmod -q proxy proxy_http
790 domain=cal.iankelling.org
791 web-conf -f 10.8.0.4:5232 - apache2 $domain <<'EOF'
792 # https://radicale.org/2.1.html
793 #https://httpd.apache.org/docs/2.4/mod/mod_authn_core.html#authtype
794 # https://stackoverflow.com/questions/5011102/apache-reverse-proxy-with-basic-authentication
795
796 # this doesn't exactly fit with the documentation.
797 # We need location / to do an auth, it cant be done outside,
798 # in order to pass on X-Remote-User. And we need
799 # the other location in order to remove the /radicale/ for
800 # requests which have it. This could be done with a rewrite,
801 # but i just get something working and call it a day.
802
803 <Location "/">
804 AllowOverride None
805 AuthType Basic
806 AuthName "Authentication Required"
807 # setup one time, with root:www-data, 640
808 AuthUserFile "/etc/caldav-htpasswd"
809 Require valid-user
810 RequestHeader set X-Remote-User expr=%{REMOTE_USER}
811 </Location>
812 <Location "/radicale/">
813 Options +FollowSymLinks +Multiviews -Indexes
814 RequestHeader set X-Script-Name /radicale/
815 RequestHeader set X-Remote-User expr=%{REMOTE_USER}
816 ProxyPass "http://10.8.0.4:5232/" retry=0
817 ProxyPassReverse "http://10.8.0.4:5232/"
818 </Location>
819 EOF
820 # nginx version of above would be:
821 # auth_basic "Not currently available";
822 # auth_basic_user_file /etc/nginx/caldav/htpasswd;
823
824
825
826 ###### begin znc setup #####
827 pi znc
828
829 # https://wiki.znc.in/FAQ seems to imply that znc doesn\'t need restart after cert change.
830 # to get into the web interface,
831 # then use non-main browser or else it doebsn't allow it based on ocsp stapling from my main site.
832 # https://iankelling.org:12533/
833 # login as ian, pass is in pass store, the part after :
834
835 # znc config generated by doing
836 # znc --makeconf
837 # selected port is also used in erc config
838 # comma separated channel list worked.
839 # while figuring things out, running znc -D for debug in foreground.
840 # to exit and save config:
841 # /msg *status shutdown
842 # configed auth on freenode by following
843 # https://wiki.znc.in/Sasl:
844 # /query *sasl
845 # RequireAuth yes
846 # Mechanism PLAIN
847 # Set MyNickservName pa$$w0rd
848 # created the system service after, and had to do
849 # mv /home/iank/.znc/* /var/lib/znc
850 # sed -i 's,/home/iank/.znc/,/var/lib/znc,' /var/lib/znc/config/znc.conf
851 # and made a copy of the config files into /p/c
852 # /msg *status LoadMod --type=global log -sanitize
853 # todo: in config file AllowWeb = true should be false. better security if that is off unless we need it.
854 # /msg *status LoadMod --type=network perform
855 # /query *perform add PRIVMSG ChanServ :invite #fsf-office
856 # /msg *perform add JOIN #fsf-office
857 # /msg *status LoadMod NickServ
858 #
859 # i set Buffer = 500
860 # also ran /znc LoadMod clearbufferonmsg
861 # it would be nice if erc supported erc query buffers by doing
862 # /msg *status clearbuffer <name of the query/receiver
863 # on killing the,
864 # an example seems to be here: https://github.com/zenspider/elisp/blob/master/rwd-irc.el
865 # if that was the case i could remove the module clearbufferonmsg
866 # also would be nice if erc supported
867 # https://wiki.znc.in/self-message
868 # https://wiki.znc.in/Query_buffers \
869 #
870 # for geekshed, there was no sasl support as far as I can tell,
871 # so I set to msg nickserv to identify upon connect.
872 if ! getent passwd znc > /dev/null; then
873 sudo useradd --create-home -d /var/lib/znc --system --shell /sbin/nologin --comment "Account to run ZNC daemon" --user-group znc
874 fi
875 sudo chmod 700 /var/lib/znc
876 sudo chown -R znc:znc /var/lib/znc
877 # Avoid restarting if possible, reconnecting to irc is annoying.
878 # The unit file was made active with conflink.
879 # Note, avoid using ser here because we wrap sudo to prints the command first.
880 if [[ $(systemctl is-active znc) != active ]]; then
881 sgo znc
882 fi
883 ###### stop znc setup #####
884
885 end
886 ;;
887 esac
888
889 case $HOSTNAME in
890 bk)
891 pi icecast2
892 # todo, save the config
893 /etc/cron.daily/stream-cert
894 web-conf -c /etc/cert-live.fsf.org -p 443 -f 8000 apache2 live.fsf.org
895 ;;
896 esac
897
898 ###### end website setup
899
900 ########### end section including li/lj ###############
901
902
903 #### desktop stuff
904
905 ### system76 things ###
906 case $HOSTNAME in
907 bo) # sy| sy doesnt seem to really need this.
908 # note, i stored the initial popos packages at /a/bin/data/popos-pkgs
909 if [[ ! -e /etc/apt/sources.list.d/system76.list ]]; then
910 # https://blog.zackad.dev/en/2017/08/17/add-ppa-simple-way.html
911 sd /etc/apt/sources.list.d/system76.list <<EOF
912 deb http://ppa.launchpad.net/system76-dev/stable/ubuntu $codename_compat main
913 deb-src http://ppa.launchpad.net/system76-dev/stable/ubuntu $codename_compat main
914 EOF
915 # ubuntu keyserver is prone to intermittent failures
916 trysleep 4 15 s apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5D1F3A80254F6AFBA254FED5ACD442D1C8B7748B
917 p update
918 # https://support.system76.com/articles/install-ubuntu/
919 # but i'm hoping this is not needed
920 # sd /etc/apt/preferences.d/system76 <<'EOF'
921 # Package: *
922 # Pin: release o=LP-PPA-system76-dev-stable
923 # Pin-Priority: 1001
924 # EOF
925 #
926 # TODO: I had to uninstall linux-image-generic-hwe-20.04 because of a conflict
927 # about linux-firmware. Should probably install it to begin with in fai if
928 # i'm going to use.
929 pi system76-driver system76-firmware
930 # if you get a notice about a firmware update, the notifier on i3
931 # is too dumb to do anything when you click it. so to see
932 # a changelog, cd to
933 # /var/cache/system76-firmware-daemon
934 # extract the xz files there, one will contain a changelog.
935 # then to install an update:
936 # s system76-firmware-cli schedule
937 fi
938 ;;
939 esac
940 ### end system76 things ###
941
942 case $distro in
943 trisquel|ubuntu)
944
945 # ppa:obsproject/obs-studio
946 if [[ ! -s /etc/apt/sources.list.d/obs.list ]]; then
947 # https://blog.zackad.dev/en/2017/08/17/add-ppa-simple-way.html
948 sd /etc/apt/sources.list.d/obs.list <<EOF
949 deb http://ppa.launchpad.net/obsproject/obs-studio/ubuntu $codename_compat main
950 deb-src http://ppa.launchpad.net/obsproject/obs-studio/ubuntu $codename_compat main
951 EOF
952 trysleep 4 15 s apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BC7345F522079769F5BBE987EFC71127F425E228
953 p update
954 fi
955 ;;
956 esac
957
958 case $codename_compat in
959 xenial)
960 # mate-indicator-applet and beyond are msc things I noticed diffing a
961 # standard install with mine.
962 pi xorg lightdm mate-desktop-environment mate-desktop-environment-extras mate-indicator-applet anacron
963 ;;
964 stretch)
965 pi task-mate-desktop
966 ;;
967 buster)
968 # todo: figure out mate for buster
969 # pi task-gnome-desktop
970 ;;
971 bionic|focal)
972 # i had installing mate-indicator-applet, but im not sure why so i removed
973 pi xorg lightdm mate-desktop-environment mate-desktop-environment-extras anacron
974
975 # pi gnome-core
976 # # apt-get update periodically fails with an appstream error.
977 # # this removes gnome-core, but its just a package for dependencies
978 # p -y remove appstream
979
980
981 # by default, it sleeps when not logged in to x/wayland and on ac power.
982 # stop that.
983 if id -u gdm &>/dev/null; then
984 sudo -u gdm dbus-launch gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type 'nothing'
985 fi
986 ;;&
987 focal)
988 # lightdm startup fails without this. on etiona, we got unity-greeter installed automatically,
989 # it would probably work on nabia too, but google just lead me to this and it works fine.
990 pi lightdm-gtk-greeter
991 # ok, this is really weird
992 # normally this file has
993 sd /etc/X11/Xsession.d/99x11-common_start <<'EOF'
994 # this is very odd.
995 # this file normally just has: exec $STARTUP
996 # but then ~/.xsession-errors
997 # says $STARTUP is not found, which appears to be the real
998 # error, but normal bash doesnt operate that way.
999 # https://bugs.launchpad.net/ubuntu/+source/im-config/+bug/1879352
1000 eval exec $STARTUP
1001 EOF
1002 # also, gdm wayland was default, had to do
1003 # dpkg-reconfigure gdm3
1004 # and choose lightdm.
1005 #
1006 ;;
1007 jammy)
1008 # not yet bothering with mate
1009 pi lightdm-gtk-greeter lightdm
1010 ;;
1011 esac
1012
1013
1014 if [[ $codename_compat == flidas ]]; then
1015 # doesnt exist in newer
1016 pi gnupg-doc
1017 fi
1018
1019
1020 case $distro in
1021 trisquel)
1022 case $codename in
1023 *)
1024 # firefox would work here too, apt would select abrowser.
1025 # and the update-alternatives thing i think is becuz firefox is
1026 # generally available before abrowser and this helps fix things
1027 # up when we have both.
1028 pi abrowser
1029 s update-alternatives --set x-www-browser /usr/bin/abrowser
1030 ;;
1031 esac
1032 ;;
1033 ubuntu)
1034 pi firefox
1035 ;;
1036 debian)
1037 pi firefox-esr
1038 ;;
1039 esac
1040
1041 # newer distros just use adb for package name it seems
1042 case $codename_compat in
1043 bionic|stretch)
1044 pi android-tools-adbd
1045 ;;
1046 esac
1047
1048 case $codename_compat in
1049 focal)
1050 pi libext2fs-dev libzstd-dev
1051 cd /a/opt/btrfs-progs
1052 ;;
1053 esac
1054
1055
1056 case $codename_compat in
1057 bionic)
1058 pi python-vte
1059 ;;
1060 *)
1061 pi reportbug-gtk
1062 ;;
1063 esac
1064
1065 # not packaged in newer distros it seems
1066 case $codename_compat in
1067 bionic|buster|stretch)
1068 pi dtrx
1069 ;;
1070 esac
1071
1072
1073 # TODO: some of the X programs can be removed from pall when using wayland
1074
1075 # depends gcc is a way to install suggests. this is apparently the only
1076 # way to install suggests even if the main package is already
1077 # installed. reinstall doesn't work, uninstalling can cause removing
1078 # dependent packages.
1079 # shellcheck disable=SC2046 # word splitting is intended
1080 pi ${pall[@]} $(apt-cache search ruby[.0-9]+-doc| awk '{print $1}') $($src/distro-pkgs)
1081
1082 # schroot service will restart schroot sessions after reboot.
1083 # I dont want that.
1084 pi-nostart schroot
1085
1086 # fix systemd unit failure. i dont know of any actual impact
1087 # other than systemd showing in degraded state. So, we dont bother
1088 # fixing the current state, let it fix on the next reboot.
1089 # https://gitlab.com/cjwatson/binfmt-support/-/commit/54f0e1af8a
1090 tmp=$(systemctl cat binfmt-support.service | grep ^After=)
1091 if [[ $tmp != *systemd-binfmt.service* ]]; then
1092 s u /etc/systemd/system/binfmt-support.service.d/override.conf <<EOF
1093 [Unit]
1094 $tmp systemd-binfmt.service
1095 EOF
1096 fi
1097
1098
1099 # commented, not worth the hassle i think.
1100 #seru enable psd
1101 #seru start psd
1102
1103
1104 # old filename
1105 sudo rm -fv /etc/systemd/resolved.conf.d/iank.conf
1106
1107 # website is dead june 14 2019. back in october, but meh
1108 sudo rm -fv /etc/apt/sources.list.d/iridium-browser.list
1109 # case $distro in
1110 # debian)
1111 # pi chromium ;;
1112 # trisquel|ubuntu)
1113 # wget -qO - https://downloads.iridiumbrowser.de/ubuntu/iridium-release-sign-01.pub|sudo apt-key add -
1114 # t=$(mktemp)
1115 # cat >$t <<EOF
1116 # deb [arch=amd64] https://downloads.iridiumbrowser.de/deb/ stable main
1117 # #deb-src https://downloads.iridiumbrowser.de/deb/ stable main
1118 # EOF
1119 # f=/etc/apt/sources.list.d/iridium-browser.list
1120 # if ! diff -q $t $f; then
1121 # s cp $t $f
1122 # s chmod 644 $f
1123 # p update
1124 # fi
1125 # pi iridium-browser
1126 # ;;
1127 # esac
1128
1129
1130 ##### rss2email
1131 if mountpoint /p &>/dev/null; then
1132 # note, see bashrc for more documentation.
1133 pi rss2email
1134 sd /etc/systemd/system/rss2email.service <<'EOF'
1135 [Unit]
1136 Description=rss2email
1137 After=multi-user.target
1138
1139 [Service]
1140 User=iank
1141 Type=oneshot
1142 # about 24 hours of failures
1143 # it copies over its files without respecting symlinks, so
1144 # we pass options to use different location.
1145 ExecStart=/usr/local/bin/sysd-mail-once -288 rss2email r2e -d /p/c/rss2email.json -c /p/c/rss2email.cfg run
1146 EOF
1147 sd /etc/systemd/system/rss2email.timer <<'EOF'
1148 [Unit]
1149 Description=rss2email
1150
1151 [Timer]
1152 # for initial run. required.
1153 OnActiveSec=30
1154 # for subsequent runs.
1155 OnUnitInactiveSec=300
1156
1157 [Install]
1158 WantedBy=timers.target
1159 EOF
1160 sudo systemctl daemon-reload
1161 fi
1162
1163
1164 ######### begin irc periodic backup #############
1165 if [[ $HOSTNAME == frodo ]]; then
1166 sd /etc/systemd/system/ircbackup.service <<'EOF'
1167 [Unit]
1168 Description=irc li backup
1169 After=multi-user.target
1170
1171 [Service]
1172 User=iank
1173 Type=oneshot
1174 ExecStart=/usr/local/bin/sysd-mail-once irc-backup rsync -rlptDhSAX root@iankelling.org:/var/lib/znc/moddata/log/iank/freenode/ /k/irclogs
1175 EOF
1176 sd /etc/systemd/system/ircbackup.timer <<'EOF'
1177 [Unit]
1178 Description=irc li backup hourly
1179
1180 [Timer]
1181 OnCalendar=hourly
1182
1183 [Install]
1184 WantedBy=timers.target
1185 EOF
1186 sudo systemctl daemon-reload
1187 sgo ircbackup.timer
1188 fi
1189
1190
1191 ######### end irc periodic backup #############
1192
1193
1194 pi-nostart openvpn
1195 # pi-nostart does not disable
1196 ser disable openvpn
1197
1198
1199 if [[ -e /p/c/gen-fsf-vpn ]]; then
1200 /p/c/gen-fsf-vpn
1201 fi
1202
1203 if [[ -e /p/c/machine_specific/$HOSTNAME/filesystem/etc/openvpn/client/hole.crt ]]; then
1204 sgo openvpn-client@hole
1205 fi
1206
1207 ############# begin syncthing setup ###########
1208 case $HOSTNAME in
1209 kd|frodo)
1210 f=/usr/share/keyrings/syncthing-archive-keyring.gpg
1211 if [[ ! -e $f ]]; then
1212 s curl -s -o $f https://syncthing.net/release-key.gpg
1213 fi
1214 s="deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable"
1215 if [[ $(cat /etc/apt/sources.list.d/syncthing.list) != "$s" ]]; then
1216 echo "$s" | sd /etc/apt/sources.list.d/syncthing.list
1217 p update
1218 fi
1219 pi syncthing
1220 ;;&
1221 frodo)
1222 m lnf -T /w/syncthing /home/iank/.config/syncthing
1223 ser daemon-reload # syncthing likely not properly packaged
1224 sgo syncthing@iank # runs as iank
1225 ;;
1226 kd)
1227
1228 # 1003 just happens to be what was on my system
1229 if ! getent passwd ziva; then
1230 s groupadd -g 1003 ziva
1231 # syncthing state / config / db are all in ~/.config/syncthing
1232 s useradd -g 1003 -u 1003 -d /d/ziva-home -c ziva -s /bin/bash ziva
1233 fi
1234 sgo syncthing@ziva
1235 ;;
1236 esac
1237
1238 # user for short term use dropping of privileges
1239
1240 if ! getent group zu &>/dev/null; then
1241 s groupadd -g 1023 zu
1242 fi
1243 if ! getent passwd zu &>/dev/null; then
1244 s useradd -g 1023 -u 1023 -c zu -s /bin/bash zu
1245 fi
1246
1247
1248 # these things persist in ~/.config/syncthing, which I save in
1249 # /w/syncthing (not in /p, because syncthing should continue to
1250 # run on home server even when using laptop as primary device)
1251 # open http://localhost:8384/
1252 # change listen address from default to tcp://:22001,
1253 # this is because we do port forward so it doesn\'t have to use
1254 # some external server, but the syncthing is broken for port forward,
1255 # you get a message, something "like connected to myself, this should not happen"
1256 # when connecting to other local devices, so I bump the port up by 1,
1257 # based on
1258 # https://forum.syncthing.net/t/connected-to-myself-should-not-happen/1763/19.
1259 # Without this, it was being stuck syncing at 0%.
1260 # Set gui username and password.
1261 #
1262 # install syncthing via f-droid,
1263 # folder setting, turn off send only.
1264 # on phone, add device, click bar code icon
1265 # on dekstop, top right, actions, device id
1266 # after adding, notification will appear on desktop to confirm
1267 #
1268 # syncing folder. from phone to desktop: select desktop in the
1269 # folder on phone\'s sync options, notification will appear in
1270 # desktop\'s web ui within a minute. For the reverse, the
1271 # notification will appear in android\'s notifications, you have to
1272 # swipe down and tap it to add the folder. It won\'t appear in the
1273 # syncthing ui, which would be intuitive, but don\'t wait for it
1274 # there. The notification may not work, instead open the web gui
1275 # from in the app, there should be a notification within there.
1276 #
1277 # On phone, set settings to run syncthing all the time, and
1278 # show no notification.
1279 #
1280 # Folder versioning would make sense if I didn\'t already use btrfs
1281 # for backups. I would choose staggered, or trash can for more space.
1282 #
1283 # if needed to install on a remote comp:
1284 # ssh -L 8384:localhost:8384 -N frodo
1285 # open http://localhost:8384/
1286 #
1287 # Note, the other thing i did was port forward port 22000,
1288 # per https://docs.syncthing.net/users/firewall.html
1289
1290 ############# end syncthing setup ###########
1291
1292
1293
1294 ####### begin misc packages ###########
1295
1296 # template
1297 case $codename in
1298 flidas)
1299 :
1300 ;;
1301 esac
1302
1303 sudo update-alternatives --set pinentry /usr/bin/pinentry-gtk-2
1304
1305
1306 # sakura config is owned by ian
1307 m reset-sakura
1308 m reset-konsole
1309 m sudo -u user2 -i reset-konsole
1310 # user2 xscreensaver we don't want to reset
1311 m reset-xscreensaver
1312
1313
1314 # this would install from cabal for newer / consistent version across os, but it screws up xmonad, so disabled for now.
1315 # this is also in primary-setup
1316 # pi libxss-dev # dependency based on build failure
1317 # cabal update
1318 # cabal install --upgrade-dependencies --force-reinstalls arbtt
1319 # also, i assume syncing this between machines somehow messed up the data.
1320
1321 ## not using arbtt for now
1322 # if mountpoint /p &>/dev/null; then
1323 # case $codename in
1324 # etiona|nabia)
1325 # pi arbtt
1326 # # same as seru enable arbtt, but works over ssh when systemctl --user causes error:
1327 # # Failed to connect to bus: No such file or directory
1328 # lnf -T /a/bin/ds/subdir_files/.config/systemd/user/arbtt.service /home/iank/.config/systemd/user/default.target.wants/arbtt.service
1329 # # allow failure
1330 # seru start arbtt ||:
1331 # ;;
1332 # esac
1333 # fi
1334 rm -fv /home/iank/.config/systemd/user/default.target.wants/arbtt.service
1335
1336
1337 m primary-setup
1338
1339 if [[ ! -e ~/.linphonerc && -e /p/.linphonerc-initial ]]; then
1340 m cp /p/.linphonerc-initial ~/.linphonerc
1341 fi
1342
1343 # linphone in t10 wont do dns with systemd-resolved or something
1344 s teeu /etc/hosts <<'EOF'
1345 74.94.156.215 watson.fsf.org
1346 EOF
1347
1348
1349
1350 ### begin spd install
1351 if mountpoint /p &>/dev/null; then
1352 pi libswitch-perl libdigest-md5-file-perl libgnupg-interface-perl
1353 t=$(mktemp)
1354 m wget -O $t http://mirror.fsf.org/fsfsys-trisquel/fsfsys-trisquel/pool/main/s/spd-perl/spd-perl_0.2-1_amd64.deb
1355 sudo dpkg -i $t
1356 m rm $t
1357 # this guesses at the appropriate directory, adjust if needed
1358 perldir=(/usr/lib/x86_64-linux-gnu/perl/5.*)
1359 m sudo ln -sf ../../../perl/5.18.2/SPD/ ${perldir[0]}
1360 # newer distro had gpg2 as default, older one, flidas, need to make it that way
1361 gpgpath=$(which gpg2) ||:
1362 if [[ $gpgpath ]]; then
1363 sudo mkdir -p /usr/local/spdhackfix
1364 s lnf -T $gpgpath /usr/local/spdhackfix/gpg
1365 fi
1366 fi
1367 ### end spd install
1368
1369
1370 # nagstamon setting which were set through the ui
1371 # monitor url https://klaxon.fsf.org/cgi-bin
1372 # monitor url cgi https://klaxon.fsf.org/cgi-bin
1373 # in filters tab:
1374 # all unknown services
1375 # all warning services
1376 # acknowledged hosts & services
1377 # hosts & services down for maintenence
1378 # services on down hosts
1379 # services on hosts in maintenece
1380 # services on unreachable osts
1381 # hosts in soft state
1382 # services in soft state
1383 # in display tab: fullscreen
1384
1385 # these translate to these settings I think
1386 # filter_acknowledged_hosts_services = True
1387 # filter_all_unknown_services = True
1388 # filter_all_warning_services = True
1389 # filter_hosts_in_soft_state = True
1390 # filter_hosts_services_maintenance = True
1391 # filter_services_in_soft_state = True
1392 # filter_services_on_down_hosts = True
1393 # filter_services_on_hosts_in_maintenance = True
1394 # filter_services_on_unreachable_hosts = True
1395 # notify_if_up = False
1396 # statusbar_floating = False
1397 # fullscreen = True
1398 # but i'm just going to rely on the webpage plus sms for now.
1399
1400
1401 # it asks if it should make users in it's group capture packets without root,
1402 # which is arguably more secure than running wireshark as root. default is no,
1403 # which is what i prefer, since I plan to use tcpdump to input to wireshark.
1404 s DEBIAN_FRONTEND=noninteractive pi wireshark-gtk
1405
1406 # /run and /dev/shm are listed as required for pulseaudio. All 4 in the group
1407 # listed in the default config as suggested.
1408 # /run/usr/1000 i noticed was missing for pulseaudio
1409 # /run/user/0 just seemed like a not bad idea, given the above
1410 tu /etc/schroot/desktop/fstab <<'EOF'
1411 /p /p none rw,bind 0 0
1412 /a /a none rw,bind 0 0
1413 /run /run none rw,bind 0 0
1414 /run/lock /run/lock none rw,bind 0 0
1415 /dev/shm /dev/shm none rw,bind 0 0
1416 /run/shm /run/shm none rw,bind 0 0
1417 /run/user/1000 /run/user/1000 none rw,bind 0 0
1418 /run/user/1001 /run/user/1001 none rw,bind 0 0
1419 /run/user/0 /run/user/0 none rw,bind 0 0
1420 EOF
1421
1422 # todo: consider if this should use the new sysd-prom-fail
1423 sd /etc/systemd/system/schrootupdate.service <<'EOF'
1424 [Unit]
1425 Description=schrootupdate
1426 After=multi-user.target
1427
1428 [Service]
1429 Type=oneshot
1430 ExecStart=/usr/local/bin/sysd-mail-once schrootupdate /a/bin/distro-setup/schrootupdate
1431 EOF
1432 sd /etc/systemd/system/schrootupdate.timer <<'EOF'
1433 [Unit]
1434 Description=schrootupdate
1435
1436 [Timer]
1437 OnCalendar=*-*-* 04:20:00 America/New_York
1438
1439 [Install]
1440 WantedBy=timers.target
1441 EOF
1442 ser daemon-reload
1443 sgo schrootupdate.timer
1444
1445
1446
1447 # for my roommate
1448 case $distro in
1449 trisquel)
1450 m mkschroot -s /a/bin/fai/fai/config/files/etc/apt/sources.list.d/bullseye.list/BULLSEYE_FREE \
1451 debian bullseye firefox-esr pulseaudio chromium anki
1452 case $(debian-codename) in
1453 etiona|nabia)
1454 # we have a lot of t8 stuff, useful to have
1455 m mkschroot -s /a/bin/fai/fai/config/files/etc/apt/sources.list.d/flidas.list/FLIDAS \
1456 trisquel flidas
1457 tu /nocow/schroot/flidas/etc/sudoers <<EOF
1458 $USER ALL=(ALL) NOPASSWD: ALL
1459 Defaults env_keep += SUDOD
1460 Defaults always_set_home
1461 Defaults !umask
1462 EOF
1463 sd /nocow/schroot/flidas//etc/locale.gen <<'EOF'
1464 en_US.UTF-8 UTF-8
1465 EOF
1466 s schroot -c flidas locale-gen
1467 s schroot -c flidas update-locale LANG=en_US.UTF-8
1468
1469 m mkschroot -s /a/bin/fai/fai/config/files/etc/apt/sources.list.d/testing.list/TESTING_NONFREE debian unstable debootstrap
1470 sudo cp -a /nocow/schroot/unstable/usr/share/debootstrap/scripts/* /usr/share/debootstrap/scripts
1471
1472 m mkschroot -s /a/bin/fai/fai/config/files/etc/apt/sources.list.d/impish.list/IMPISH ubuntu impish
1473
1474 ;;
1475 esac
1476 ;;
1477 debian)
1478 pi chromium
1479 ;;
1480 esac
1481
1482 sudo mkdir -p /nocow/user
1483 sudo chown $USER:$USER /nocow/user
1484 pi anki
1485
1486
1487 ####### begin transmission
1488
1489 case $HOSTNAME in
1490 frodo)
1491 tdir=/i/k
1492 ;;
1493 kd)
1494 tdir=/d/tor
1495 ;;
1496 *)
1497 tdir=/nocow/user/tor
1498 ;;
1499 esac
1500
1501 sudo mkdir -p $tdir
1502
1503 # adapted from /var/lib/dpkg/info/transmission-daemon.postinst
1504 # 450 seems likely to be unused. we need to specify one or else
1505 # it won't be stable across installs.
1506 if ! getent passwd debian-transmission > /dev/null; then
1507 sudo groupadd -g 450 debian-transmission
1508 sudo adduser --quiet \
1509 --gid 450 \
1510 --uid 450 \
1511 --system \
1512 --no-create-home \
1513 --disabled-password \
1514 --home /var/lib/transmission-daemon \
1515 debian-transmission
1516 fi
1517 # We want group writable stuff from transmission.
1518 # However, after setting this, I learn that transmission sets it's
1519 # own umask based on it's settings file. Well, no harm leaving this
1520 # so it's set right from the beginning.
1521 sudo chfn debian-transmission -o umask=0002
1522
1523 # note i had to do this, which is persistent:
1524 # cd /i/k
1525 # s chgrp debian-transmission torrents partial-torrents
1526
1527 # syslog says things like
1528 # 'Failed to set receive buffer: requested 4194304, got 425984'
1529 # google suggets giving it even more than that
1530 tu /etc/sysctl.conf<<'EOF'
1531 net.core.rmem_max = 67108864
1532 net.core.wmem_max = 16777216
1533 EOF
1534 sudo sysctl -p
1535
1536 # some reason it doesn\'t seem to start automatically anyways
1537 pi-nostart transmission-daemon
1538 # be extra sure its not started
1539 ser disable transmission-daemon
1540 ser stop transmission-daemon
1541
1542 # the folder was moved here after an install around 02/2017.
1543 # it contains runtime data,
1544 # plus a simple symlink to the config file which it\'s
1545 # not worth separating out.
1546 # between comps, the uid can change
1547
1548 f=$tdir/transmission-daemon
1549 for d in $tdir/partial-torrents $tdir/torrents $f; do
1550 if [[ ! -d $d ]]; then
1551 sudo mkdir -p $d
1552 fi
1553 sudo chown -R debian-transmission:user2 $d
1554 done
1555 s lnf -T $f /var/lib/transmission-daemon/.config/transmission-daemon
1556 s lnf -T /etc/transmission-daemon/settings.json $f/settings.json
1557 sudo chown -R debian-transmission:debian-transmission $f
1558 sudo chown -R debian-transmission:debian-transmission /var/lib/transmission-daemon
1559 #
1560 # config file documented here, and it\'s the same config
1561 # for daemon vs client, so it\'s documented in the gui.
1562 # https://trac.transmissionbt.com/wiki/EditConfigFiles#Options
1563 #
1564 # I originaly setup rpc-whitelist, but after using
1565 # routing to a network namespace, it doesn\'t see the
1566 # real source address, so it\'s disabled.
1567 #
1568 # Changed the cache-size to 256 mb, reduces disk use.
1569 # It is a read & write cache.
1570 #
1571 # just fyi: default rpc port is 9091
1572 if ! systemctl is-active transmission-daemon-nn &>/dev/null && \
1573 ! systemctl is-active transmission-daemon; then
1574 tmp=$(mktemp)
1575 command sudo ruby <<EOF >$tmp
1576 require 'json'
1577 p = '/etc/transmission-daemon/settings.json'
1578 s = {
1579 'rpc-whitelist-enabled' => false,
1580 'rpc-authentication-required' => false,
1581 'incomplete-dir' => '$tdir/partial-torrents',
1582 'incomplete-dir-enabled' => true,
1583 'download-dir' => '$tdir/torrents',
1584 "speed-limit-up" => 800,
1585 "speed-limit-up-enabled" => true,
1586 "peer-port" => 61486,
1587 "cache-size-mb" => 256,
1588 "ratio-limit" => 5.0,
1589 "ratio-limit-enabled" => false,
1590 }
1591 puts(JSON.pretty_generate(JSON.parse(File.read(p)).merge(s)))
1592 EOF
1593 cat $tmp | sudo dd of=/etc/transmission-daemon/settings.json
1594
1595 fi
1596
1597 ####### end transmission
1598
1599 case $HOSTNAME in
1600 kd)
1601 # to persist upload/dl metadata. initially, moved all the stuff
1602 # in /var/lib/transmission-daemon to /d/tor
1603 s usermod --home /d/tor debian-transmission
1604 sgo transmission-daemon-nn
1605
1606 ;;
1607 esac
1608
1609
1610 ######### begin transmission client setup ######
1611
1612 # to connect from a remote client, trans-remote-route in brc2
1613
1614
1615 if [[ -e /p/transmission-rpc-pass ]]; then
1616 # arch had a default config,
1617 # debian had nothing until you start it.
1618 # With a little trial an error, here is a minimal config
1619 # taken from the generated one, plus changes that the
1620 # settings ui does, without a bunch of ui crap settings.
1621 #
1622 # only settings I set were
1623 # hostname
1624 # auto-connect
1625 # password
1626
1627 # the password is randomly generated on first run, i copied it out
1628 # so it could be used by other hosts.
1629 sudo ruby <<'EOF'
1630 require 'json'
1631 p = '/etc/transmission-daemon/settings.json'
1632 s = JSON.parse(File.read(p))
1633 s["rpc-password"] = File.read("/p/transmission-rpc-pass").chomp
1634 # default is 0022 (18 in decimal)
1635 s["umask"] = 2
1636 File.write p, JSON.pretty_generate(s)
1637 EOF
1638
1639 rpc_pass=$(</p/transmission-rpc-pass)
1640 for f in /home/*; do
1641 u=${f##*/}
1642 uid=$(id -u $u 2>/dev/null) || continue
1643 if [[ ! $uid -ge 1000 ]]; then
1644 continue
1645 fi
1646 d=$f/.config/transmission-remote-gtk
1647 sudo -u $u mkdir -p $d
1648 # i tried setting hostname to transmission.b8.nz, so i could dynamically change where
1649 # this connects to, but it said some 421 denied error when I did that. Then it
1650 # froze X when i ran it under strace. Whatever.
1651 sudo -u $u dd of=$d/config.json <<EOF
1652 {
1653 "profiles" : [
1654 {
1655 "profile-name" : "Default",
1656 "hostname" : "10.173.0.2",
1657 "rpc-url-path" : "/transmission/rpc",
1658 "username" : "",
1659 "password" : "$rpc_pass",
1660 "auto-connect" : true,
1661 "ssl" : false,
1662 "timeout" : 40,
1663 "retries" : 3,
1664 "update-active-only" : false,
1665 "activeonly-fullsync-enabled" : false,
1666 "activeonly-fullsync-every" : 2,
1667 "update-interval" : 3,
1668 "min-update-interval" : 3,
1669 "session-update-interval" : 60,
1670 "exec-commands" : [],
1671 "destinations" : []
1672 }
1673 ],
1674 "profile-id" : 0,
1675 "add-options-dialog" : false
1676 }
1677 EOF
1678 done
1679 fi
1680 ######### end transmission client setup ######
1681
1682
1683 ### printer setup
1684 pi cups
1685
1686 sudo gpasswd -a $USER lpadmin # based on ubuntu wiki
1687 # goto http://127.0.0.1:631
1688 # administration tab, add new printer button.
1689 # In debian, I could use hte recommended driver,
1690 # in arch, I had to pick out the 6L driver.
1691
1692
1693 # bridge networking as user fails. google lead here, but it doesn\'t work:
1694 # oh well, I give up.
1695 # http://wiki.qemu.org/Features-Done/HelperNetworking
1696 # s mkdir /etc/qemu
1697 # f=/etc/qemu/bridge.conf
1698 # sd $f <<'EOF'
1699 # allow br0
1700 # EOF
1701 # #s chown root:qemu $f # debian has somethig like qemu-libvirt. equivalent?
1702 # s chmod 640 $f
1703
1704 # general known for debian/ubuntu, not for fedora
1705
1706 m /a/bin/buildscripts/go
1707 # only needed for rg. cargo takes up 11 gigs, filled up the disk on je.
1708 #m /a/bin/buildscripts/rust
1709 m /a/bin/buildscripts/misc
1710 m /a/bin/buildscripts/pithosfly
1711 #m /a/bin/buildscripts/alacritty
1712 #m /a/bin/buildscripts/kitty
1713
1714 pi-nostart virtinst virt-manager
1715 soff libvirtd
1716 # i cant if this is whats causing it to start even though
1717 # its disabled. note: it leaves around dnsmasq instances even
1718 # if you stop it. what the hell systemd?
1719 soff libvirt-guests
1720 # allow user to run vms, from debian handbook. libvirt-qemu
1721 # based on https://www.whonix.org/wiki/KVM#First-time_User.3F
1722 for x in iank user2; do s usermod -a -G libvirt,kvm,libvirt-qemu $x; done
1723
1724
1725 pi --no-install-recommends kdeconnect
1726 ### kdeconnect for gnome. started in /a/bin/distro-setup/desktop-20-autostart.sh
1727 ### but gnome + xmonad not working in flidas, so i disabled it
1728 # pi libgtk-3-dev python3-requests-oauthlib valac cmake python-nautilus libappindicator3-dev
1729 # cd /a/opt/indicator-kdeconnect
1730 # mkdir -p build
1731 # cd build
1732 # cmake .. -DCMAKE_INSTALL_PREFIX=/usr
1733 # make
1734 # sudo make install
1735 # # we can start it manually with /usr/lib/x86_64-linux-gnu/libexec/kdeconnectd
1736 # # it seems, according to
1737 # # /etc/xdg/autostart/kdeconnectd.desktop
1738 # # I'm not seeing the icon, but the clipboard replication is working
1739
1740
1741 ### begin model 01 arduino support ###
1742 # https://github.com/keyboardio/Kaleidoscope/wiki/Install-Arduino-support-on-Linux
1743 # also built latest arduino in /a/opt/Arduino, (just cd build; ant build; ant run )
1744 # set arduino var in bashrc,
1745 # have system config file setup too.
1746 sudo adduser $USER dialout
1747
1748 # as of 2022-05,
1749 # download arduino ide, extract in /a/opt, ignore the install script, run ./arduino,
1750 # toolbar, preferences, add board manager url:
1751 # https://raw.githubusercontent.com/keyboardio/boardsmanager/master/package_keyboardio_index.json
1752 # toolbar, board manager, add keyboardio
1753 # toolbar, select model01 board
1754 # toolbar, examples, model01, compile
1755
1756 ###
1757
1758 # this is for the mail command too. update-alternatives is kind of misleading
1759 # since at least it's main commands pretend mail does not exist.
1760 # bsd's mail got pulled in on some dumb dependency, i dunno how.
1761 sudo update-alternatives --set mailx /usr/bin/mail.mailutils
1762
1763 ######### end misc packages #########
1764
1765
1766 # packages I once used before and liked, but don\'t want installed now for
1767 # various reasons:
1768 # python-sqlite is used for offlineimap
1769 # lxappearance python-sqlite dolphin paman dconf-editor
1770
1771
1772
1773 ######## unfinished
1774
1775 # todo, finish configuring smart.
1776
1777 pi smartmontools
1778 # mostly from https://wiki.archlinux.org/index.php/S.M.A.R.T.
1779 # turn on smart. background on options:
1780 # first line, -a = test everyting on all devices.
1781 # -S on, turn on disk internal saving of vendor specific info,
1782 # from google, seems like this is usually already on and fairly standard.
1783 # -o on, turn on 4 hour period non-performance degrading testing.
1784 # short test daily 2-3am, extended tests Saturdays between 3-4am:
1785 sched="-s (S/../.././02|L/../../6/03)"
1786 sudo sed -i --follow-symlinks "s#^[[:space:]]*DEVICESCAN.*#\
1787 DEVICESCAN -a -o on -S on -n standby,q $sched \
1788 -m root@mail.iankelling.org -M exec /usr/local/bin/smart-notify#" /etc/smartd.conf
1789
1790 # in the default configuration of at least ubuntu 14.04, resolvconf is
1791 # configured to order any nameservers associated with tun* or tap*
1792 # before the normal internet interfaces, which means they are always
1793 # consulted first. This is often slower and undesirable, ie. local dns
1794 # queries go from 0ms to 10+ or 100+ ms. To reverse the ordering, you
1795 # can do:
1796 #sudo sed -i --follow-symlinks '/tun\*\|tap\*/d' /etc/resolvconf/interface-order
1797 # however, this breaks dns lookup for hosts on the openvpn lan.
1798 # I can\'t figure out why hosts on the normal lan would not be
1799 # broken under the default ordering, except the host I was
1800 # testing with previously had an entry in /etc/hosts.
1801
1802 ############# end unfinished
1803
1804 ########### misc stuff
1805
1806 # pressing tab after sdf here:
1807 # scp sdfbash: set +o noglob: command not found
1808 # in t11, bash 5.1.16. this fixes it.
1809 sudo sed -ri 's/([[:space:]]*)(\$reset)$/\1set +o noglob #$reset/' /usr/share/bash-completion/bash_completion
1810
1811 rm -fv /home/iank/.mpv/watch_later
1812 rm -rf /home/iank/.mpv
1813
1814 if [[ ! -e ~/.local/bin/pip ]]; then
1815 tmp=$(mktemp)
1816 wget -O$tmp https://bootstrap.pypa.io/get-pip.py
1817 python3 $tmp --user
1818 hash -r
1819 fi
1820
1821 ## begin beets
1822 # soo, apt install beets fails due to wanting a pip package,
1823 # we find out why it wants this through
1824 # apt-cache depends --recurse --no-recommends --no-suggests --no-conflicts --no-breaks --no-replaces --no-enhances beets | less
1825 # python-mediafile requires tox, which requires virtualenv, which requires pip.
1826 # but, python-mediafile doesn't really require tox, it is specified in
1827 # ./usr/lib/python3/dist-packages/mediafile-0.9.0.dist-info/METADATA
1828 # as being required only for testing, but the debian package
1829 # included it anyways, due to a mistake or bad tooling or something.
1830 # I don't plan to use tox, so, according to https://serverfault.com/a/251091,
1831 # we can create and install a dummy package by:
1832 #
1833 # "equivs-control <name>, edit the file produced to provide the right
1834 # dependency and have a nice name, then run equivs-build <name> and
1835 # finally dpkg -i the resulting .deb file"
1836 # as of 2023-02, the tox dependency was removed in debian unstable, so
1837 # this hack will probably go away in t12.
1838
1839 if pcheck beets; then
1840 tmpdir="$(mktemp -d)"
1841 cd "$tmpdir"
1842 # edited from output of equivs-control tox
1843 cat >tox <<'EOF'
1844 Section: python
1845 Priority: optional
1846 Standards-Version: 3.9.2
1847 Package: tox
1848 Description: tox-dummy
1849 EOF
1850 equivs-build tox
1851 sudo dpkg -i tox_1.0_all.deb
1852 rm -rf ./tox*
1853 pi beets python3-discogs-client
1854 cd
1855 rm -r "$tmpdir"
1856 fi
1857
1858 # get rid of annoying message
1859 s sed -ri "s/^([[:space:]]*ui.print_\('Playing)/#\1/" /usr/share/beets/beetsplug/play.py
1860
1861
1862 # notes about barrier
1863 # run barrier, do the gui config,
1864 # setup the 2 screens, using hostnames for the new screen.
1865 # save the server config
1866 # $HOME/.local/share/barrier/.barrier.conf
1867 # per the man page.
1868 #
1869 # ssl errors, resolved via advice here: https://github.com/debauchee/barrier/issues/231
1870 # BARRIER_SSL_PATH=~/.local/share/barrier/SSL/
1871 # mkdir -p "${BARRIER_SSL_PATH}"
1872 # openssl req -x509 -nodes -days 365 -subj /CN=Barrier -newkey rsa:4096 -keyout ${BARRIER_SSL_PATH}/Barrier.pem -out ${BARRIER_SSL_PATH}/Barrier.pem
1873 # ran on both machines.
1874 # When pressing start in the gui, the cli options used are printed to the console,
1875 # they are useful. So on server, just run barriers, client run barrierc SERVER_IP
1876
1877 ### begin timetrap setup
1878 if mountpoint /p &>/dev/null; then
1879 mkdir -p ~/.timetrap/
1880 ln -sf /a/opt/timetrap_formatters ~/.timetrap/formatters
1881 if ! type -p t &>/dev/null; then
1882 pi ruby-dev libsqlite3-dev
1883 gem install --user timetrap
1884 fi
1885 fi
1886 ### end timetrap setup
1887
1888 # leftover cleanup for t9
1889 pu resolvconf
1890
1891 case $codename in
1892 # needed for debootstrap scripts for fai since fai requires debian
1893 flidas)
1894 pi dnsmasq
1895 pi-nostart network-manager
1896 # i hate networkmanager. noo, of course disabling it doesnt work
1897 # unless you add a hack. found this by doing
1898 # systemd-analyze dot > x.dot
1899 # less x.dot
1900 # /networkman
1901 soff NetworkManager
1902 soff NetworkManager-wait-online.service
1903 # make networkmanager use resolvconf instead of its own dnsmasq which
1904 # conflicts with the normal dnsmasq package.
1905 f=/etc/NetworkManager/NetworkManager.conf
1906 m=$(md5sum $f)
1907 sudo sed -ri '/ *\[main\]/,/^ *\[[^]]+\]/{/^\s*dns[[:space:]=]/d}' $f
1908 sudo sed -ri '/ *\[main\]/a dns=default' $f
1909 if [[ $m != $(md5sum $f) ]]; then
1910 srestart NetworkManager
1911 fi
1912 # networkmanager has this nasty behavior on flidas: if the machine
1913 # crashes with dnsmasq running, on subsequent boot, it adds an entry to
1914 # resolvconf for 127.0.0.1 in some stupid attempt to restore
1915 # nameservers.
1916 # This can be manually fixed by stoping dnsmasq,
1917 # then based on whats in /run/dnsmasq/, i see we can run
1918 # s resolvconf -d NetworkManager
1919 # oh ya, and stoping NetworkManager leaves this crap behind without cleaning it up.
1920 ser disable NetworkManager
1921 ;;
1922 esac
1923
1924 # I have no use for avahi,
1925 # had to run this twice when doing manually, i dunno why
1926 soff avahi-daemon ||:
1927 sleep 1
1928 soff avahi-daemon
1929
1930 # make my /etc/fonts/conf.d/ get used.
1931 # I have a new sans-serif font there because the default one
1932 # displays l and I as the same char, grrrrr.
1933 sudo fc-cache
1934
1935 pi desktop-file-utils
1936 m /a/bin/distro-setup/mymimes
1937
1938 if type -p dbus-launch >/dev/null; then
1939 # stop autopoping windows when i plug in an android phone.
1940 # dbus-launch makes this work within an ssh connection, otherwise you get this message,
1941 # with still 0 exit code.
1942 # dconf-WARNING **: failed to commit changes to dconf: Cannot autolaunch D-Bus without X11 $DISPLAY
1943 m dbus-launch gsettings set org.gnome.desktop.media-handling automount-open false
1944 fi
1945
1946 # on grub upgrade, we get prompts unless we do this
1947 devs=()
1948 for dev in $(s btrfs fil show /boot | sed -nr 's#.*path\s+(\S+)$#\1#p'); do
1949 devs+=("$(devbyid $dev),")
1950 done
1951 devs[-1]=${devs[-1]%,} # jonied by commas
1952 sudo debconf-set-selections <<EOF
1953 grub-pc grub-pc/install_devices multiselect ${devs[*]}
1954 EOF
1955
1956
1957 sysd-prom-fail-install dynamicipupdate
1958 sysd-prom-fail-install systemstatus
1959 sysd-prom-fail-install btrfsmaintstop
1960 sgo btrfsmaint.timer
1961 sgo btrfsmaintstop
1962 sgo systemstatus
1963 sgo dynamicipupdate
1964
1965
1966 if grep -xFq $HOSTNAME /a/bin/ds/machine_specific/btrbk.hosts; then
1967 sgo btrbk.timer
1968 fi
1969 if [[ $HOSTNAME == kd ]]; then
1970 sgo btrbk-spread.timer
1971 fi
1972
1973 # note: to see when it was last run,
1974 # ser list-timers
1975
1976 case $HOSTNAME in
1977 kd)
1978 sgo btrbkrust.timer
1979 ;;
1980 esac
1981
1982 ### begin prometheus ###
1983
1984
1985
1986 case $HOSTNAME in
1987 kd)
1988 # Font awesome is needed for the alertmanager ui.
1989 pi prometheus-alertmanager prometheus fonts-font-awesome
1990 /c/roles/prom/files/simple/usr/local/bin/fsf-install-prometheus
1991 web-conf -p 9091 -f 9090 - apache2 i.b8.nz <<'EOF'
1992 <Location "/">
1993 AuthType Basic
1994 AuthName "basic_auth"
1995 # created with
1996 # htpasswd -c prometheus-htpasswd USERNAME
1997 AuthUserFile "/etc/prometheus-htpasswd"
1998 Require valid-user
1999 </Location>
2000 EOF
2001
2002 web-conf -p 9094 -f 9093 - apache2 i.b8.nz <<'EOF'
2003 <Location "/">
2004 AuthType Basic
2005 AuthName "basic_auth"
2006 # created with
2007 # htpasswd -c prometheus-htpasswd USERNAME
2008 AuthUserFile "/etc/prometheus-htpasswd"
2009 Require valid-user
2010 </Location>
2011 EOF
2012
2013 # by default, the alertmanager web ui is not enabled other than a page
2014 # that suggests to use the amtool cli. that tool is good, but you cant
2015 # silence things nearly as easily as with the gui.
2016 if [[ ! -e /usr/share/prometheus/alertmanager/ui/index.html ]]; then
2017 # default script didnt work, required some changes to get elm 19.1,
2018 # which is a dependency of the latest alertmanager. I modified
2019 # and copied it into /b/ds. In future, might need some other
2020 # solution.
2021 #sudo /usr/share/prometheus/alertmanager/generate-ui.sh
2022 sudo /b/ds/generate-ui.sh
2023 ser restart prometheus-alertmanager
2024 fi
2025
2026 s /c/roles/prom-export/files/simple/usr/local/bin/fsf-install-node-exporter -l
2027
2028 for ser in prometheus-node-exporter prometheus-alertmanager prometheus; do
2029 sysd-prom-fail-install $ser
2030 done
2031
2032 ;;
2033 *)
2034 s /c/roles/prom-export/files/simple/usr/local/bin/fsf-install-node-exporter
2035 ;;
2036 esac
2037
2038 # cleanup old files. 2023-02
2039 x=(/var/lib/prometheus/node-exporter/*.premerge)
2040 if [[ -e ${x[0]} ]]; then
2041 s rm /var/lib/prometheus/node-exporter/*
2042 fi
2043
2044
2045 case $HOSTNAME in
2046 # todo, for limiting node exporter http,
2047 # either use iptables or, in
2048 # /etc/default/prometheus-node-exporter
2049 # listen on the wireguard interface
2050
2051 *)
2052 wgip=$(command sudo sed -rn 's,^ *Address *= *([^/]+).*,\1,p' /etc/wireguard/wghole.conf)
2053 # old filename. remove once all hosts are updated.
2054 s rm -fv /etc/apache2/sites-enabled/${HOSTNAME}wg.b8.nz.conf
2055 web-conf -i -a $wgip -p 9101 -f 9100 - apache2 ${HOSTNAME}wg.b8.nz <<'EOF'
2056 <Location "/">
2057 AuthType Basic
2058 AuthName "basic_auth"
2059 # created with
2060 # htpasswd -c prometheus-export-htpasswd USERNAME
2061 AuthUserFile "/etc/prometheus-export-htpasswd"
2062 Require valid-user
2063 </Location>
2064 EOF
2065 # For work, i think we will just use the firewall for hosts in the main data center, and
2066 # vpn for hosts outside it.
2067
2068 # TODO: figure out how to detect the ping failure and try again.
2069
2070 # Binding to the wg interface, it might go down, so always restart, and wait for it on boot.
2071 s mkdir /etc/systemd/system/apache2.service.d
2072 sd /etc/systemd/system/apache2.service.d/restart.conf <<EOF
2073 [Unit]
2074 After=wg-quick@wghole.service
2075 StartLimitIntervalSec=0
2076
2077 [Service]
2078 Restart=always
2079 RestartSec=30
2080 EOF
2081
2082 ;;
2083 esac
2084
2085 ### end prometheus ###
2086
2087 ### begin nagios ###
2088
2089 pi nagios-nrpe-server
2090
2091 case $HOSTNAME in
2092 kd)
2093 # the backport is for this bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=800345
2094 pi nagios4 nagios-nrpe-plugin monitoring-plugins-basic/bullseye-backports
2095 s rm -fv /etc/apache2/conf-enabled/nagios4-cgi.conf
2096
2097 # to add a password for admin:
2098 # htdigest /etc/nagios4/htdigest.users Nagios4 iank
2099 # now using the same pass as prometheus
2100
2101 # nagstamon auth settings, set to digest instead of basic.
2102
2103 web-conf -p 3005 - apache2 i.b8.nz <<'EOF'
2104 # adapted from /etc/apache2/conf-enabled/nagios4-cgi.conf
2105
2106 ScriptAlias /cgi-bin/nagios4 /usr/lib/cgi-bin/nagios4
2107 ScriptAlias /nagios4/cgi-bin /usr/lib/cgi-bin/nagios4
2108
2109 # Where the stylesheets (config files) reside
2110 Alias /nagios4/stylesheets /etc/nagios4/stylesheets
2111
2112 # Where the HTML pages live
2113 Alias /nagios4 /usr/share/nagios4/htdocs
2114
2115 <DirectoryMatch (/usr/share/nagios4/htdocs|/usr/lib/cgi-bin/nagios4|/etc/nagios4/stylesheets)>
2116 Options FollowSymLinks
2117 DirectoryIndex index.php index.html
2118 AllowOverride AuthConfig
2119 #
2120 # The default Debian nagios4 install sets use_authentication=0 in
2121 # /etc/nagios4/cgi.cfg, which turns off nagos's internal authentication.
2122 # This is insecure. As a compromise this default apache2 configuration
2123 # only allows private IP addresses access.
2124 #
2125 # The <Files>...</Files> below shows how you can secure the nagios4
2126 # web site so anybody can view it, but only authenticated users can issue
2127 # commands (such as silence notifications). To do that replace the
2128 # "Require all granted" with "Require valid-user", and use htdigest
2129 # program from the apache2-utils package to add users to
2130 # /etc/nagios4/htdigest.users.
2131 #
2132 # A step up is to insist all users validate themselves by moving
2133 # the stanza's in the <Files>..<Files> into the <DirectoryMatch>.
2134 # Then by setting use_authentication=1 in /etc/nagios4/cgi.cfg you
2135 # can configure which people get to see a particular service from
2136 # within the nagios configuration.
2137 #
2138 AuthDigestDomain "Nagios4"
2139 AuthDigestProvider file
2140 AuthUserFile "/etc/nagios4-htdigest.users"
2141 AuthGroupFile "/etc/group"
2142 AuthName "Nagios4"
2143 AuthType Digest
2144 Require valid-user
2145 </DirectoryMatch>
2146
2147 <Directory /usr/share/nagios4/htdocs>
2148 Options +ExecCGI
2149 </Directory>
2150 EOF
2151 ;;
2152 esac
2153
2154 # when you alter a service through the web, it changes vars in /var/lib/nagios4/status.dat. for example:
2155 # notifications_enabled=1
2156 # note, the same variable exists in the correspdonding "define service {"
2157
2158 # in the default config, we have these definitions
2159
2160 # 11 define command {
2161 # 2 define contact {
2162 # 1 define contactgroup {
2163 # 9 define host {
2164 # 4 define hostgroup {
2165 # 23 define service {
2166 # 5 define timeperiod {
2167
2168
2169 # on klaxon
2170
2171 # klaxon:/etc/nagios3 # grep -rho '^ *define [^{ ]*' | sort | uniq -c
2172 # 76 define command
2173 # 11 define contact
2174 # 6 define contactgroup
2175 # 162 define host
2176 # 1 define hostextinfo
2177 # 16 define hostgroup
2178 # 3040 define service
2179 # 2 define servicedependency
2180 # 6 define timeperiod
2181
2182
2183
2184
2185 ### end nagios ###
2186
2187 ### begin bitcoin ###
2188
2189 case $HOSTNAME in
2190 sy|kd)
2191 sudo install -m 0755 -o root -g root -t /usr/bin /a/opt/bitcoin-24.0.1/bin/*
2192 sgo bitcoind
2193 # note: the bitcoin user & group are setup in fai
2194 sudo usermod -a -G bitcoin iank
2195 # todo: make bitcoin have a stable uid/gid
2196 if [[ ! $(readlink -f /var/lib/bitcoind/wallets) == /q/wallets ]]; then
2197 s lnf /q/wallets /var/lib/bitcoind
2198 sudo chown -h bitcoin:bitcoin /var/lib/bitcoind/wallets
2199 fi
2200 # note, there exists
2201 # /a/bin/ds/disabled/bitcoin
2202 ;;
2203 esac
2204
2205 ### end bitcoin
2206
2207 case $HOSTNAME in
2208 kw|x3)
2209 sd /etc/cups/client.conf <<'EOF'
2210 ServerName printserver0.office.fsf.org
2211 EOF
2212 ;;
2213 esac
2214
2215
2216 end_msg <<'EOF'
2217 In mate settings settings, change scrolling to two-finger,
2218 because the default edge scroll doesn\'t work. Originally found this in debian.
2219 EOF
2220
2221 # Remove dep that came in with desktop to fix associations.
2222 m pu transmission-gtk
2223
2224 case $HOSTNAME in
2225 kd)
2226 lnf -T /d/vidshare /home/iank/Videos
2227 ;;
2228 esac
2229
2230 # # Based on guix manual instructions, also added code to profile.
2231 # # disabled since i'm not using it now.
2232 # pi nscd
2233 # if ! type -p guix >/dev/null; then
2234 # cd $(mktemp -d)
2235 # wget https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh
2236 # # added some stuff to envonment.sh for profile based on
2237 # # manual instructions
2238 # # wget https://sv.gnu.org/people/viewgpg.php?user_id=15145 -qO - | gpg --import -
2239 # # echo is to get past prompt
2240 # yes | sudo -E HOME=$HOME bash guix-install.sh || [[ $? == 141 ]]
2241 # guix install glibc-utf8-locales
2242 # guix package --install guile
2243 # fi
2244
2245 lnf -T /a/opt ~/src
2246
2247 pi tor
2248 m /a/bin/buildscripts/tor-browser
2249 # one root command needed to install
2250 s ln -sf /a/opt/tor-browser/Browser/start-tor-browser /usr/local/bin
2251
2252
2253 # nfs server
2254 pi-nostart nfs-kernel-server
2255
2256 # todo, this is old, probably needs removing
2257 if [[ $HOSTNAME == tp ]]; then
2258 sd /etc/wireguard/wg0.conf <<EOF
2259 [Interface]
2260 PrivateKey = $(cat /p/c/machine_specific/tp/filesystem/root/wg.key)
2261 Address = 10.3.0.2/24, fdfd::2/64
2262
2263 [Peer]
2264 PresharedKey = $(cat /p/c/machine_specific/tp/filesystem/root/wg.psk)
2265 PublicKey = 9RnAsJB+ISrA/9lmDKBoT08oBiKwzA64exBBj+rO+ng=
2266 Endpoint = b8.nz:26000
2267 AllowedIPs = 10.3.0.1/24, fdfd::1/64
2268 PersistentKeepalive = 20
2269 EOF
2270 sudo systemctl enable wg-quick@wg0
2271 sudo systemctl start wg-quick@wg0
2272 fi
2273
2274
2275 if [[ $HOSTNAME == kw ]]; then
2276 # hosts 1-199. 200+ are dynamic, avoid those
2277 tu /etc/exports <<'EOF'
2278 /root/.ianktrisquel_9/.iank/e/e 192.168.0.0/25(rw,no_root_squash,async,no_subtree_check) 192.168.0.128/26(rw,no_root_squash,async,no_subtree_check) 192.168.0.192/29(rw,no_root_squash,async,no_subtree_check)
2279 /home/iank/.iank/e/e 192.168.0.0/25(rw,no_root_squash,async,no_subtree_check) 192.168.0.128/26(rw,no_root_squash,async,no_subtree_check) 192.168.0.192/29(rw,no_root_squash,async,no_subtree_check)
2280 EOF
2281 ekw
2282 sgo nfs-server
2283 sudo exportfs -rav
2284 fi
2285
2286
2287 # if I was going to create a persistent vm, i might do it like this:
2288 # variant=something # from: virt-install --os-variant list
2289 # s virt-install --noautoconsole --graphics spice,listen=0.0.0.0 \
2290 # --disk=/a/images/some_name.qcow2,bus=virtio --vcpus 2 -r 4096 -w bridge=br0 \
2291 # -n some_name --import --os-variant $variant --cpu host-model-only
2292
2293
2294 # for brother HL-2270DW, this worked:
2295 # https://askubuntu.com/questions/1067234/cant-use-wireless-brother-printer-2270dw-ubuntu-18-04
2296 # /a/opt/linux-brprinter-installer-2.2.2-1
2297 # answer n when it asks about uri.
2298 # Then go to cups, delete the existing printer, added on with dnssd url. browsed to
2299 # ppd at /usr/share/ppd/HL2270DW.ppd, which is duplicated at /usr/share/cups/model/HL2270DW.ppd
2300 # ppd file got installed from bash -x ./usr/local/Brother/Printer/HL2270DW/cupswrapper/cupswrap,
2301 # which I downloaded from their driver. but dont do that again, i copied it to /a/opt/HL2270DW.ppd,
2302 # use that.
2303
2304 # I had to reset it to use wired instead of wifi. it only uses 1 at a time. boot with go button held, after lights turn off, tap go 6 times.
2305 # Then it was already configured, but if i needed to, go to its web ui, default pass is "access".
2306
2307 ######### begin stuff belonging at the end ##########
2308
2309 end