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