2 # Copyright (C) 2019 Ian Kelling
3 # SPDX-License-Identifier: AGPL-3.0-or-later
6 source /a
/bin
/errhandle
/err
7 src
="$(readlink -f -- "${BASH_SOURCE[0]}")"; src
=${src%/*} # directory of this file
9 if [[ $EUID == 0 ]]; then
10 echo "$0: error: run as regular user" >&2
15 echo 1 >~
/.local
/distro-end
18 # shellcheck source=./pkgs
22 exec &> >(sudo
tee -a /var
/log
/distro-end
)
23 echo "$0: $(date): starting now)"
24 # see example of usage to understand.
27 IFS
= read -r -d '' y ||
:
31 printf "$0: %s\n" "$*" >&2; exit 1
33 spa
() { # simple package add
37 codename
=$
(debian-codename
)
38 codename_compat
=$
(debian-codename-compat
)
40 sed="sed --follow-symlinks"
52 s debconf-set-selections
<<EOF
53 popularity-contest popularity-contest/participate boolean true
56 ########### begin section including li ################
68 # not needed for deb, dependency of at.
73 # no equivalent in other distros:
74 if isdeb
&& pcheck apt-file
; then
75 # this condition is just a speed optimization
84 # allows me to pipe with ssh -t, and gets rid of spam
85 # http://forums.debian.net/viewtopic.php?f=5&t=85822
86 # i'd rather disable the service than comment the init file
87 # this says disabling the service, it will still get restarted
88 # but this script doesn't do anything on restart, so it should be fine
89 s
dd of
=/var
/run
/motd.dynamic
if=/dev
/null
92 # this isn't a complete solution. It still shows me when updates are available,
93 # but it's no big deal.
94 s
rm -f /etc
/update-motd.d
/10-help-text /etc
/update-motd.d
/00-header
101 ### begin certbot install ###
102 if [[ $distro == debian
]]; then
103 # note, need python-certbot-nginx for nginx, but it depends on nginx,
104 # and I'm not installing nginx by default right now.
105 pi certbot python-certbot-apache
106 elif [[ $codename_compat == xenial
]]; then
107 # not packaged in xenial or flidas
108 pi software-properties-common
109 l
="deb http://ppa.launchpad.net/certbot/certbot/ubuntu xenial main"
110 if ! grep -xFq "$l" /etc
/apt
/sources.list
{,.d
/*.list
}; then
111 s add-apt-repository
-y ppa
:certbot
/certbot ||
:
114 pi python-certbot-apache
116 die
"distro unknown for certbot"
118 # make a version of the certbot timer that emails me.
119 x
=/systemd
/system
/certbot
120 $sed -r -f - /lib
$x.timer
<<'EOF' |s dd of=/etc${x}mail.timer
121 s,^Description.*,\0 mail version,
123 $sed -r -f - /lib
$x.service
<<'EOF' |s dd of=/etc${x}mail.service
124 s,(ExecStart=)(/usr/bin/certbot),\1/a/bin/log-quiet/sysd-mail-once certbotmail \2 --renew-hook /a/bin/distro-setup/certbot-renew-hook,
127 sgo certbotmail.timer
128 ### end certbot install ###
131 # dogcam setup. not using atm
134 # /a/bin/webcam/install-server
137 # /a/bin/webcam/install-client
142 ## not actually using prometheus just yet
143 # # office is not exposed to internet yet
144 # if [[ $HOSTNAME != kw ]]; then
145 # ## prometheus node exporter setup
146 # web-conf -f 9100 -p 9101 apache2 $(hostname -f) <<'EOF'
147 # #https://httpd.apache.org/docs/2.4/mod/mod_authn_core.html#authtype
148 # # https://stackoverflow.com/questions/5011102/apache-reverse-proxy-with-basic-authentication
152 # AuthName "Authentication Required"
153 # # setup one time, with root:www-data, 640
154 # AuthUserFile "/etc/prometheus-htpasswd"
161 ######### begin flidas pinned packages ######
162 case $
(debian-codename
) in
163 # needed for debootstrap scripts for fai since fai requires debian
165 curl http
://archive.ubuntu.com
/ubuntu
/project
/ubuntu-archive-keyring.gpg | s apt-key add
-
166 s
dd of
=/etc
/apt
/preferences.d
/flidas-xenial
<<EOF
168 Pin: release a=xenial
172 Pin: release a=xenial-updates
176 Pin: release a=xenial-security
179 s
dd of
=/etc
/apt
/sources.list.d
/xenial.list
2>/dev
/null
<<EOF
180 deb http://us.archive.ubuntu.com/ubuntu/ xenial main
181 deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main
182 deb http://us.archive.ubuntu.com/ubuntu/ xenial-security main
185 s apt-key adv
--keyserver keyserver.ubuntu.com
--recv-keys 3B4FE6ACC0B21F32
186 s
dd of
=/etc
/apt
/preferences.d
/flidas-bionic
<<EOF
188 Pin: release a=bionic
192 Pin: release a=bionic-updates
196 Pin: release a=bionic-security
200 # better to run btrfs-progs which matches our kernel version
201 # (note, renamed from btrfs-tools)
202 s
dd of
=/etc
/apt
/preferences.d
/btrfs-progs
<<EOF
203 Package: btrfs-progs libzstd1
204 Pin: release a=bionic
207 Package: btrfs-progs libzstd1
208 Pin: release a=bionic-updates
211 Package: btrfs-progs libzstd1
212 Pin: release a=bionic-security
219 deb http://us.archive.ubuntu.com/ubuntu/ bionic main
220 deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main
221 deb http://us.archive.ubuntu.com/ubuntu/ bionic-security main
223 f
=/etc
/apt
/sources.list.d
/bionic.list
224 if ! diff -q $t $f; then
230 # no special reason, but its better for btrfs-progs to
231 # be closer to our kernel version
236 aptitude download debootstrap
/xenial
238 s
cp .
/usr
/share
/debootstrap
/scripts
/* /usr
/share
/debootstrap
/scripts
240 s
dd of
=/etc
/apt
/preferences.d
/flidas-etiona
<<EOF
242 Pin: release a=etiona
246 Pin: release a=etiona-updates
250 Pin: release a=etiona-security
254 Pin: release a=etiona-backports
260 deb http://mirror.fsf.org/trisquel/ etiona main
261 deb http://mirror.fsf.org/trisquel/ etiona-updates main
262 deb http://archive.trisquel.info/trisquel/ etiona-security main
263 deb http://mirror.fsf.org/trisquel/ etiona-backports main
265 f
=/etc
/apt
/sources.list.d
/etiona.list
266 if ! diff -q $t $f; then
272 s
dd of
=/etc
/apt
/preferences.d
/debian-goodies
<<EOF
273 Package: debian-goodies
274 Pin: release n=etiona
279 s
dd of
=/etc
/apt
/preferences.d
/flidas-buster
<<EOF
281 Pin: release n=buster
285 Pin: release n=buster-updates
289 # dont use buster because it causes dist-upgrade to think its downgrading
290 # packages while really just reinstalling the same version.
291 f
=/etc
/apt
/apt.conf.d
/01iank
293 # # stupid buster uses some key algorithm not supported by flidas gpg that apt uses.
294 # s dd of=/etc/apt/apt.conf.d/01iank <<'EOF'
295 # Acquire::AllowInsecureRepositories "true";
298 f
=/etc
/apt
/sources.list.d
/buster.list
302 # deb http://http.us.debian.org/debian buster main
303 # deb-src http://http.us.debian.org/debian buster main
305 # deb http://security.debian.org/ buster/updates main
306 # deb-src http://security.debian.org/ buster/updates main
308 # deb http://http.us.debian.org/debian buster-updates main
309 # deb-src http://http.us.debian.org/debian buster-updates main
311 # if ! diff -q $t $f; then
317 # newer version needed for false positive in checkrestart.
318 # I did buster at first, but other problem above with having
319 # buster repos. not sure if the false positive exists in etiona.
320 p
install -y --allow-unauthenticated debian-goodies
322 s
dd of
=/etc
/apt
/preferences.d
/shellcheck
<<EOF
324 Pin: release a=etiona
328 Pin: release a=etiona-updates
332 Pin: release a=etiona-security
336 s
dd of
=/etc
/apt
/preferences.d
/bash
<<EOF
338 Pin: release a=etiona
342 Pin: release a=etiona-updates
346 Pin: release a=etiona-security
354 pi debian-goodies shellcheck
358 ######### end flidas pinned packages ######
360 ##### begin automatic upgrades (after checkrestart has been installed) ####
361 s
dd of
=/etc
/apt
/apt.conf.d
/10periodic
<<'EOF'
362 # this file was mostly just comments.
363 APT::Periodic::Update-Package-Lists "1";
364 APT::Periodic::Download-Upgradeable-Packages "1";
365 APT::Periodic::AutocleanInterval "7";
366 APT::Periodic::Unattended-Upgrade "1";
369 s
dd of
=/etc
/apt
/apt.conf.d
/50unattended
-upgrades <<EOF
370 # fyi: default file has comments about available options,
371 # you may want to read that, do pkx unattended-upgrades
372 Unattended-Upgrade::Mail "root";
373 Unattended-Upgrade::MailOnlyOnError "true";
374 Unattended-Upgrade::Remove-Unused-Dependencies "true";
375 Unattended-Upgrade::Origins-Pattern {
376 # default is just security updates. this list found from reading
377 # match_whitelist_string() in `which unattended-upgrades`
378 "o=*,l=*,a=*,c=*,site=*,n=*";
382 # old names, too verbose
383 s
rm -f /etc
/cron.d
/unattended-upgrade-reboot
/usr
/local
/bin
/zelous-unattended-reboot
385 s
dd of
=/etc
/cron.d
/myupgrade
<<'EOF'
386 # Setup reboots when running outdated stuff, unattended upgrades happen
387 # at 6 am + rand(60 min).
388 20 7 * * * root /usr/local/bin/myupgrade | /usr/local/bin/log-once -1 myupgrade
389 0 * * * * root /usr/local/bin/mycheckrestart | /usr/local/bin/log-once -1 mycheckrestart
391 ##### end automatic upgrades ####
395 ###### begin website setup
400 f
=/var
/lib
/bind
/db.b8.nz
401 if [[ ! -e $f ]]; then
404 install -m 644 -o bind -g bind /p
/c
/machine_specific
/li
/bind-initial
/db.b8.nz
$f
409 li
) domain
=iankelling.org
;;
411 /a
/h
/setup.sh
$domain
414 # start mumble only when im going to use it, since i dont use it much
415 pi-nostart mumble-server
416 s
$sed -ri "s/^ *(serverpassword=).*/\1$(< /a/bin/bash_unpublished/mumble_pass)/" /etc
/mumble-server.ini
418 # do certificate to avoid warning about unsigned cert,
419 # which is overkill for my use, but hey, I'm cool, I know
421 web-conf apache2 mumble.iankelling.org
422 s
rm -f /etc
/apache
2/sites-enabled
/mumble.iankelling.org
424 export RENEWED_LINEAGE=/etc/letsencrypt/live/mumble.iankelling.org
425 /a/bin/distro-setup/certbot-renew-hook
429 # requested from linode via a support ticket.
430 # https://www.linode.com/docs/networking/an-overview-of-ipv6-on-linode/
431 # ipv6 stuff pieced together
432 # via slightly wrong information from
433 # https://github.com/angristan/openvpn-install/blob/master/openvpn-install.sh
434 # https://community.openvpn.net/openvpn/wiki/IPv6
437 vpn-server-setup
-rd 2600:3c00
:e000
:280::1/64 2600:3c00
::f03c
:91ff
:feb4
:0bf3
438 s
tee /etc
/openvpn
/client-config
/mail <<'EOF'
439 ifconfig-push 10.8.0.4 255.255.255.0
440 ifconfig-ipv6-push 2600:3c00:e000:280::2/64
443 if [[ -e /lib
/systemd
/system
/openvpn-server@.service
]]; then
444 vpn_service
=openvpn-server@server
446 vpn_service
=openvpn@server
449 sudo
dd of
=/etc
/systemd
/system
/vpnmail.service
<<EOF
451 Description=Turns on iptables mail nat
456 ExecStart=/a/bin/distro-setup/vpn-mail-forward start
457 ExecStop=/a/bin/distro-setup/vpn-mail-forward stop
460 WantedBy=$vpn_service.service
464 # needed for li's local mail delivery.
465 tu
/etc
/hosts
<<<"10.8.0.4 mail.iankelling.org"
467 # setup let's encrypt cert
468 web-conf apache2 mail.iankelling.org
469 s rm /etc/apache2/sites-enabled/mail.iankelling.org{,-redir}.conf
472 domain=cal.iankelling.org
473 web-conf -f 10.8.0.4:5232 - apache2 $domain <<'EOF'
474 #https://httpd.apache.org/docs/2.4/mod/mod_authn_core.html#authtype
475 # https://stackoverflow.com/questions/5011102/apache-reverse-proxy-with-basic-authentication
477 Options +FollowSymLinks +Multiviews +Indexes
480 AuthName "Authentication Required"
481 # setup one time, with root:www-data, 640
482 AuthUserFile "/etc/caldav-htpasswd"
486 # nginx version of above would be:
487 # auth_basic "Not currently available";
488 # auth_basic_user_file /etc/nginx/caldav/htpasswd;
492 ###### begin znc setup #####
495 # https://wiki.znc.in/FAQ seems to imply that znc doesn\'t need restart after cert change.
496 # to get into the web interface,
497 # then use non-main browser or else it doebsn't allow it based on ocsp stapling from my main site.
498 # https://iankelling.org:12533/
500 export RENEWED_LINEAGE=/etc/letsencrypt/live/iankelling.org
501 /a/bin/distro-setup/certbot-renew-hook
504 # znc config generated by doing
506 # selected port is also used in erc config
507 # comma separated channel list worked.
508 # while figuring things out, running znc -D for debug in foreground.
509 # to exit and save config:
510 # /msg *status shutdown
511 # configed auth on freenode by following
512 # https://wiki.znc.in/Sasl:
513 # /msg *sasl RequireAuth yes
514 # /msg *sasl Mechanism PLAIN
515 # /msg *sasl Set ident_name password
516 # created the system service after, and had to do
517 # mv /home/iank/.znc/* /var/lib/znc
518 # sed -i 's,/home/iank/.znc/,/var/lib/znc,' /var/lib/znc/config/znc.conf
519 # and made a copy of the config files into /p/c
520 # /msg *status LoadMod --type=global log -sanitize
521 # todo: in config file AllowWeb = true should be false. better security if that is off unless we need it.
522 # /msg *status LoadMod --type=network perform
523 # /msg *perform add PRIVMSG ChanServ :invite #fsf-office
524 # /msg *perform add JOIN #fsf-office
527 # also ran /znc LoadMod clearbufferonmsg
528 # it would be nice if erc supported erc query buffers by doing
529 # /msg *status clearbuffer <name of the query/receiver
531 # an example seems to be here: https://github.com/zenspider/elisp/blob/master/rwd-irc.el
532 # if that was the case i could remove the module clearbufferonmsg
533 # also would be nice if erc supported
534 # https://wiki.znc.in/self-message
535 # https://wiki.znc.in/Query_buffers \
537 s useradd --create-home -d /var/lib/znc --system --shell /sbin/nologin --comment "Account to run ZNC daemon" --user-group znc || [[ $? == 9 ]] # 9 if it exists already
538 s chmod 700 /var/lib/znc
539 s chown -R znc:znc /var/lib/znc
540 s dd of=/etc/systemd/system/znc.service 2>/dev/null <<'EOF'
542 Description=ZNC, an advanced IRC bouncer
543 After=network-online.target
546 ExecStart=/usr/bin/znc -f --datadir=/var/lib/znc
550 WantedBy=multi-user.target
554 ###### stop znc setup #####
558 echo "$0: $(date): ending now)"
562 ###### end website setup
564 ########### end section including li/lj ###############
567 case $codename_compat in
569 # mate-indicator-applet and beyond are msc things I noticed diffing a
570 # standard install with mine.
571 pi xorg lightdm mate-desktop-environment mate-desktop-environment-extras mate-indicator-applet anacron
577 # mate doesnt have wayland support yet
578 pi task-gnome-desktop
585 # TODO: some of the X programs can be removed from pall when using wayland
587 # depends gcc is a way to install suggests. this is apparently the only
588 # way to install suggests even if the main package is already
589 # installed. reinstall doesn't work, uninstalling can cause removing
590 # dependent packages.
591 pi ${pall[@]} $(apt-cache search ruby[.0-9]+-doc| awk '{print $1}') $(apt-cache depends gcc|grep -i suggests:| awk '{print $2}') $($src/distro-pkgs)
595 wget -O$x https://bootstrap.pypa.io/get-pip.py
599 sgo fsf-vpn-dns-cleanup
602 # website is dead june 14 2019
603 s rm -f /etc/apt/sources.list.d/iridium-browser.list
608 # wget -qO - https://downloads.iridiumbrowser.de/ubuntu/iridium-release-sign-01.pub|sudo apt-key add -
611 # deb [arch=amd64] https://downloads.iridiumbrowser.de/deb/ stable main
612 # #deb-src https://downloads.iridiumbrowser.de/deb/ stable main
614 # f=/etc/apt/sources.list.d/iridium-browser.list
615 # if ! diff -q $t $f; then
625 ### begin home vpn server setup
628 # # this section done initially to make persistent keys.
629 # # Also note, I temporarily set /etc/hosts so my host was
630 # # b8.nz when running this, since the vpn client config
631 # # generator assumes we need to go to that server to get
633 # vpn-server-setup -rds
634 # s cp -r --parents /etc/openvpn/easy-rsa/keys /p/c/filesystem
635 # s chown -R 1000:1000 /p/c/filesystem/etc/openvpn/easy-rsa/keys
636 # # kw = kgpe work machine.
637 # for host in x2 x3 kw; do
638 # vpn-mk-client-cert -b $host -n home b8.nz 1196
639 # dir=/p/c/machine_specific/$host/filesystem/etc/openvpn/client
641 # s bash -c "cp /etc/openvpn/client/home* $dir"
642 # # note: /etc/update-resolv-conf-home also exists for all systems with /p
645 # key already exists, so this won't generate one, just the configs.
646 vpn-server-setup -rds
647 s tee -a /etc/openvpn/server/server.conf <<'EOF'
648 push "dhcp-option DNS 10.0.0.1"
649 push "route 10.0.0.0 255.255.0.0"
650 client-connect /a/bin/distro-setup/vpn-client-connect
652 s sed -i --follow-symlinks 's/10.8./10.9./g;s/^\s*port\s.*/port 1196/' /etc/openvpn/server/server.conf
654 if [[ $HOSTNAME == tp ]]; then
655 if [[ -e /lib/systemd/system/openvpn-server@.service ]]; then
656 vpn_service=openvpn-server@server
658 vpn_service=openvpn@server
662 ### end vpn server setup
666 # note, see bashrc for more documentation.
668 s dd of=/etc/systemd/system/rss2email.service <<'EOF'
670 Description=rss2email
671 After=multi-user.target
676 # about 24 hours of failures
677 # it copies over its files without respecting symlinks, so
678 # we pass options to use different location.
679 ExecStart=/a/bin/log-quiet/sysd-mail-once -288 rss2email r2e -d /p/c/rss2email.json -c /p/c/rss2email.cfg run
681 s dd of=/etc/systemd/system/rss2email.timer <<'EOF'
683 Description=rss2email
686 # for initial run. required.
688 # for subsequent runs.
689 OnUnitInactiveSec=300
692 WantedBy=timers.target
694 s systemctl daemon-reload
697 ######### begin pump.io periodic backup #############
698 if [[ $HOSTNAME == frodo ]]; then
699 s dd of=/etc/systemd/system/pumpbackup.service <<'EOF'
701 Description=pump li backup
702 After=multi-user.target
707 ExecStart=/a/bin/log-quiet/sysd-mail-once pump-backup /a/bin/distro-setup/pump-backup
709 s dd of=/etc/systemd/system/pumpbackup.timer <<'EOF'
711 Description=pump li backup hourly
717 WantedBy=timers.target
719 s systemctl daemon-reload
722 ######### end pump.io periodic backup #############
725 ######### begin irc periodic backup #############
726 if [[ $HOSTNAME == frodo ]]; then
727 s dd of=/etc/systemd/system/ircbackup.service <<'EOF'
729 Description=irc li backup
730 After=multi-user.target
735 ExecStart=/a/bin/log-quiet/sysd-mail-once irc-backup rsync -rlptDhSAX root@iankelling.org:/var/lib/znc/moddata/log/iank/freenode/ /k/irclogs
737 s dd of=/etc/systemd/system/ircbackup.timer <<'EOF'
739 Description=irc li backup hourly
745 WantedBy=timers.target
747 s systemctl daemon-reload
752 ######### end irc periodic backup #############
755 # https://github.com/jlebon/textern
757 make native-install USER=1
760 debian|trisquel|ubuntu)
761 # suggests resolvconf package. installing it here is redundant, but make sure anyways.
762 # todo: check other distros to make sure it\'s installed
763 pi-nostart openvpn resolvconf
764 # pi-nostart does not disable
770 /a/bin/distro-setup/radicale-setup
772 ## android studio setup
773 # this contains the setting for android sdk to point to
774 # /a/opt/androidsdk, which is asked upon first run
775 lnf /a/opt/.AndroidStudio2.2 ~
776 # android site says it needs a bunch of packages for ubuntu,
777 # but I googled for debian, and someone says you just need lib32stdc++6 plus the
779 # https://pid7007blog.blogspot.com/2015/07/installing-android-studio-in-debian-8.html
780 # see w.org for more android studio details
781 spa lib32stdc++6 default-jdk
784 ############# begin syncthing setup ###########
785 if [[ $HOSTNAME == frodo ]]; then
786 # It\'s simpler to just worry about running it in one place for now.
787 # I assume it would work to clone it\'s config to another non-phone
788 # and just run it in one place instead of the normal having a
789 # separate config. I lean toward using the same config, since btrfs
790 # syncs between comps.
792 arch) pi syncthing ;;
793 trisquel|ubuntu|debian)
794 # testing has relatively up to date packages
795 if ! isdebian-testing; then
796 # based on error when doing apt-get update:
797 # E: The method driver /usr/lib/apt/methods/https could not be found.
798 pi apt-transport-https
799 # google led me here:
800 # https://apt.syncthing.net/
801 curl -s https://syncthing.net/release-key.txt | sudo apt-key add -
802 s="deb http://apt.syncthing.net/ syncthing release"
803 if [[ $(cat /etc/apt/sources.list.d/syncthing.list) != "$s" ]]; then
804 echo "$s" | s dd of=/etc/apt/sources.list.d/syncthing.list
811 lnf -T /w/syncthing /home/iank/.config/syncthing
812 ser daemon-reload # syncthing likely not properly packaged
813 sgo syncthing@iank # runs as iank
815 # these things persist in ~/.config/syncthing, which I save in
816 # /w/syncthing (not in /p, because syncthing should continue to
817 # run on home server even when using laptop as primary device)
818 # open http://localhost:8384/
819 # change listen address from default to tcp://:22001,
820 # this is because we do port forward so it doesn\'t have to use
821 # some external server, but the syncthing is broken for port forward,
822 # you get a message, something "like connected to myself, this should not happen"
823 # when connecting to other local devices, so I bump the port up by 1,
825 # https://forum.syncthing.net/t/connected-to-myself-should-not-happen/1763/19.
826 # Without this, it was being stuck syncing at 0%.
827 # Set gui username and password.
829 # install syncthing via f-droid,
830 # folder setting, turn off send only.
831 # on phone, add device, click bar code icon
832 # on dekstop, top right, actions, device id
833 # after adding, notification will appear on desktop to confirm
835 # syncing folder. from phone to desktop: select desktop in the
836 # folder on phone\'s sync options, notification will appear in
837 # desktop\'s web ui within a minute. For the reverse, the
838 # notification will appear in android\'s notifications, you have to
839 # swipe down and tap it to add the folder. It won\'t appear in the
840 # syncthing ui, which would be intuitive, but don\'t wait for it
841 # there. The notification may not work, instead open the web gui
842 # from in the app, there should be a notification within there.
844 # On phone, set settings to run syncthing all the time, and
845 # show no notification.
847 # Folder versioning would make sense if I didn\'t already use btrfs
848 # for backups. I would choose staggered, or trash can for more space.
850 # if needed to install on a remote comp:
851 # ssh -L 8384:localhost:8384 -N frodo
852 # open http://localhost:8384/
854 # Note, the other thing i did was port forward port 22000,
855 # per https://docs.syncthing.net/users/firewall.html
858 ############# end syncthing setup ###########
862 ####### begin misc packages ###########
871 # sakura config is owned by ian
874 sudo -u user2 -i reset-konsole
875 # user2 xscreensaver we don't want to reset
879 # this would install from cabal for newer / consistent version across os, but it screws up xmonad, so disabled for now.
880 # this is also in primary-setup
881 # pi libxss-dev # dependency based on build failure
883 # cabal install --upgrade-dependencies --force-reinstalls arbtt
884 # also, i assume syncing this between machines somehow messed thin
885 #lnf -T /m/arbtt-capture.log ~/.arbtt/capture.log
889 if [[ ! -e ~/.linphonerc && -e /p/.linphonerc-initial ]]; then
890 cp /p/.linphonerc-initial ~/.linphonerc
894 ### begin spd install
895 pi libswitch-perl libdigest-md5-file-perl libgnupg-interface-perl
897 wget -O $t http://mirror.fsf.org/fsfsys-trisquel/fsfsys-trisquel/pool/main/s/spd-perl/spd-perl_0.2-1_amd64.deb
900 # this guesses at the appropriate directory, adjust if needed
901 perldir=(/usr/lib/x86_64-linux-gnu/perl/5.*)
902 sudo ln -sf ../../../perl/5.18.2/SPD/ ${perldir[0]}
903 # newer distro had gpg2 as default, older one, flidas, need to make it that way
904 gpgpath=$(which gpg2)
906 s mkdir -p /usr/local/spdhackfix
907 s lnf -T $gpgpath /usr/local/spdhackfix/gpg
912 if [[ $HOSTNAME == kw ]]; then
914 NOTE: after this finishes, i did
916 # remove br from auto:
917 s vim /etc/network/interfaces
921 # nagstamon setting which were set through the ui
923 # all unknown sources
924 # all warning services
925 # acknowledged hosts & services
926 # hosts & services down for maintenence
927 # services on down hosts
928 # services on hosts in maintenece
929 # services on unreachable osts
930 # hosts in soft state
931 # services in soft state
932 # in display tab: fullscreen
934 # these translate to these settings I think
935 # filter_acknowledged_hosts_services = True
936 # filter_all_unknown_services = True
937 # filter_all_warning_services = True
938 # filter_hosts_in_soft_state = True
939 # filter_hosts_services_maintenance = True
940 # filter_services_in_soft_state = True
941 # filter_services_on_down_hosts = True
942 # filter_services_on_hosts_in_maintenance = True
943 # filter_services_on_unreachable_hosts = True
944 # notify_if_up = False
945 # statusbar_floating = False
947 # but i'm just going to rely on the webpage plus sms for now.
951 debian|trisquel|ubuntu)
952 # it asks if it should make users in it's group capture packets without root,
953 # which is arguably more secure than running wireshark as root. default is no,
954 # which is what i prefer, since I plan to use tcpdump to input to wireshark.
955 s DEBIAN_FRONTEND=noninteractive pi wireshark-gtk
960 # /run and /dev/shm are listed as required for pulseaudio. All 4 in the group
961 # listed in the default config as suggested.
962 # /run/usr/1000 i noticed was missing for pulseaudio
963 # /run/user/0 just seemed like a not bad idea, given the above
964 tu /etc/schroot/desktop/fstab <<'EOF'
965 /run /run none rw,bind 0 0
966 /run/lock /run/lock none rw,bind 0 0
967 /dev/shm /dev/shm none rw,bind 0 0
968 /run/shm /run/shm none rw,bind 0 0
969 /run/user/1000 /run/user/1000 none rw,bind 0 0
970 /run/user/1001 /run/user/1001 none rw,bind 0 0
971 /run/user/0 /run/user/0 none rw,bind 0 0
979 repo=http://archive.ubuntu.com/ubuntu/
982 repo=http://deb.debian.org/debian/
987 if schroot -l | grep -xFq chroot:$n; then
988 echo "$0: $n schroot already installed, skipping"
993 s dd of=/etc/schroot/chroot.d/$n.conf <<EOF
999 preserve-environment=true
1002 if [[ -e $d/bin ]]; then
1003 s chroot $d apt-get update
1004 s chroot $d apt-get -y dist-upgrade --purge --auto-remove
1005 cd; s schroot -c $n -- apt-get install --allow-unauthenticated -y ${apps[@]}
1009 s debootstrap $n $d $repo
1010 cd; s schroot -c $n -- apt-get install --allow-unauthenticated -y ${apps[@]}
1012 s cp -P {,$d}/etc/localtime
1014 s dd of=/etc/systemd/system/schrootupdate.service <<'EOF'
1016 Description=schrootupdate
1017 After=multi-user.target
1021 ExecStart=/a/bin/log-quiet/sysd-mail-once schrootupdate /a/bin/distro-setup/schrootupdate
1023 s dd of=/etc/systemd/system/schrootupdate.timer <<'EOF'
1025 Description=schrootupdate
1028 OnCalendar=*-*-* 04:20:00
1031 WantedBy=timers.target
1033 s systemctl daemon-reload
1034 sgo schrootupdate.timer
1041 mkschroot debian stretch firefox-esr pulseaudio chromium
1048 s mkdir -p /nocow/user
1049 s chown $USER:$USER /nocow/user
1053 # adapted from /var/lib/dpkg/info/transmission-daemon.postinst
1054 # 450 seems likely to be unused. we need to specify one or else
1055 # it won't be stable across installs.
1056 if ! getent passwd debian-transmission > /dev/null; then
1057 s groupadd -g 450 debian-transmission
1065 --home-dir /var/lib/transmission-daemon \
1066 --shell /bin/false \
1075 --disabled-password \
1076 --home /var/lib/transmission-daemon \
1081 # We want group writable stuff from transmission.
1082 # However, after setting this, I learn that transmission sets it's
1083 # own umask based on it's settings file. Well, no harm leaving this
1084 # so it's set right from the beginning.
1085 s chfn debian-transmission -o umask=0002
1088 debian|trisquel|ubuntu)
1089 # note i had to do this, which is persistent:
1091 # s chgrp debian-transmission torrents partial-torrents
1093 # syslog says things like
1094 # 'Failed to set receive buffer: requested 4194304, got 425984'
1095 # google suggets giving it even more than that
1096 tu /etc/sysctl.conf<<'EOF'
1097 net.core.rmem_max = 67108864
1098 net.core.wmem_max = 16777216
1102 # some reason it doesn\'t seem to start automatically anyways
1103 pi-nostart transmission-daemon
1104 # be extra sure its not started
1105 ser disable transmission-daemon
1106 ser stop transmission-daemon
1108 # the folder was moved here after an install around 02/2017.
1109 # it contains runtime data,
1110 # plus a simple symlink to the config file which it\'s
1111 # not worth separating out.
1112 # between comps, the uid can change
1113 f=/i/transmission-daemon
1114 s lnf -T $f /var/lib/transmission-daemon/.config/transmission-daemon
1115 if [[ -e $f ]]; then
1116 s chown -R debian-transmission:debian-transmission $f
1118 for f in /i/k/partial-torrents /i/k/torrents; do
1119 if [[ -e $f ]]; then
1120 s chown -R debian-transmission:user2 $f
1123 s chown -R debian-transmission:debian-transmission /var/lib/transmission-daemon
1125 # config file documented here, and it\'s the same config
1126 # for daemon vs client, so it\'s documented in the gui.
1127 # https://trac.transmissionbt.com/wiki/EditConfigFiles#Options
1129 # I originaly setup rpc-whitelist, but after using
1130 # routing to a network namespace, it doesn\'t see the
1131 # real source address, so it\'s disabled.
1133 # Changed the cache-size to 256 mb, reduces disk use.
1134 # It is a read & write cache.
1138 p = '/etc/transmission-daemon/settings.json'
1139 File.write(p, JSON.pretty_generate(JSON.parse(File.read(p)).merge({
1140 'rpc-whitelist-enabled' => false,
1141 'rpc-authentication-required' => false,
1142 'incomplete-dir' => '/i/k/partial-torrents',
1143 'incomplete-dir-enabled' => true,
1144 'download-dir' => '/i/k/torrents',
1145 "speed-limit-up" => 800,
1146 "speed-limit-up-enabled" => true,
1147 "peer-port" => 61486,
1148 "cache-size-mb" => 256,
1149 "ratio-limit" => 5.0,
1150 "ratio-limit-enabled" => true,
1155 # todo: others unknown
1160 # trisquel 8 = openvpn, debian stretch = openvpn-client
1161 vpn_ser=openvpn-client
1162 if [[ ! -e /lib/systemd/system/openvpn-client@.service ]]; then
1166 s dd of=/etc/systemd/system/transmission-daemon-nn.service <<EOF
1168 Description=Transmission BitTorrent Daemon netns
1169 After=network.target
1170 Requires=${vpn_ser}-nn@client.service
1171 After=${vpn_ser}-nn@client.service
1172 JoinsNamespaceOf=${vpn_ser}-nn@client.service
1175 #User=debian-transmission
1176 # notify type doesn't work with sudo
1178 ExecStart=/usr/bin/nsenter --mount=/root/mount_namespaces/client sudo -u debian-transmission /usr/bin/transmission-daemon -f --log-error
1179 ExecReload=/bin/kill -s HUP \$MAINPID
1184 WantedBy=multi-user.target
1188 if [[ $HOSTNAME == frodo ]]; then
1189 sgo transmission-daemon-nn
1193 ######### begin transmission client setup ######
1195 if [[ -e /p/transmission-rpc-pass ]]; then
1196 # arch had a default config,
1197 # debian had nothing until you start it.
1198 # With a little trial an error, here is a minimal config
1199 # taken from the generated one, plus changes that the
1200 # settings ui does, without a bunch of ui crap settings.
1202 # only settings I set were
1207 # the password is randomly generated on first run, i copied it out
1208 # so it could be used by other hosts.
1211 p = '/etc/transmission-daemon/settings.json'
1212 s = JSON.parse(File.read(p))
1213 s["rpc-password"] = File.read("/p/transmission-rpc-pass").chomp
1214 # default is 0022 (18 in decimal)
1216 File.write p, JSON.pretty_generate(s)
1219 rpc_pass=$(</p/transmission-rpc-pass)
1220 for f in /home/*; do
1222 if [[ ! $(id -u $u) -ge 1000 ]]; then
1225 d=$f/.config/transmission-remote-gtk
1227 s -u $u dd of=$d/config.json <<EOF
1231 "profile-name" : "Default",
1232 "hostname" : "transmission.b8.nz",
1233 "rpc-url-path" : "/transmission/rpc",
1235 "password" : "$rpc_pass",
1236 "auto-connect" : true,
1240 "update-active-only" : false,
1241 "activeonly-fullsync-enabled" : false,
1242 "activeonly-fullsync-every" : 2,
1243 "update-interval" : 3,
1244 "min-update-interval" : 3,
1245 "session-update-interval" : 60,
1253 "add-options-dialog" : false
1258 ######### end transmission client setup ######
1260 # dunno why it\'s there, but get rid of it
1262 li|lj) s rm -rf /home/linode ;;
1269 pi cups ghostscript gsfonts # from arch wiki cups page
1270 pi hplip # from google
1271 s gpasswd -a $USER sys # from arch wiki
1272 sgo org.cups.cupsd.service
1274 debian|trisquel|ubuntu)
1276 s gpasswd -a $USER lpadmin # based on ubuntu wiki
1279 # other distros unknown
1281 # goto http://127.0.0.1:631
1282 # administration tab, add new printer button.
1283 # In debian, I could use hte recommended driver,
1284 # in arch, I had to pick out the 6L driver.
1287 # allow user to run vms, from debian handbook
1288 for x in iank user2; do s usermod -a -G libvirt,kvm $x; done
1289 # bridge networking as user fails. google lead here, but it doesn\'t work:
1290 # oh well, I give up.
1291 # http://wiki.qemu.org/Features-Done/HelperNetworking
1293 # f=/etc/qemu/bridge.conf
1294 # s dd of=$f <<'EOF'
1297 # #s chown root:qemu $f # debian has somethig like qemu-libvirt. equivalent?
1300 # general known for debian/ubuntu, not for fedora
1303 debian|trisquel|ubuntu)
1304 if ! type -p go &>/dev/null; then
1306 # just the latest stable at the time of writing
1307 # TODO, maybe put this all into a build script,
1308 # and do some automatic updates
1309 wget -q https://dl.google.com/go/go1.12.4.linux-amd64.tar.gz
1310 s tar -C /usr/local -xzf go1.12.4.linux-amd64.tar.gz
1313 go get -u mvdan.cc/fdroidcl
1314 # a bit of googling, and added settings to bashrc
1321 # otherwise we get error about accessing kvm module.
1322 # seems like there might be a better way, but google was a bit vague.
1323 s $sed -ri '/^ *user *=/d' /etc/libvirt/qemu.conf
1324 echo 'user = "root"' | s tee -a /etc/libvirt/qemu.conf
1325 # guessing this is not needed
1326 #sgo virtlogd.service
1328 # iank: disabed as im not using libvirt usually
1329 # # https://bbs.archlinux.org/viewtopic.php?id=206206
1330 # # # this should prolly go in the wiki
1331 # sgo virtlogd.socket
1334 debian|trisquel|ubuntu)
1335 pi-nostart virtinst virt-manager
1344 wget ftp://ftp.gnu.org/pub/gnu/global/global-6.5.7.tar.gz
1347 # based on https://github.com/leoliu/ggtags
1348 ./configure --with-exuberant-ctags=/usr/bin/ctags
1351 pip install pygments
1359 debian|trisquel|ubuntu)
1366 # removed synergy since ive not used it in a long time
1369 pi --no-install-recommends kdeconnect
1370 ### kdeconnect for gnome. started in /a/bin/distro-setup/desktop-20-autostart.sh
1371 ### but gnome + xmonad not working in flidas, so i disabled it
1372 # pi libgtk-3-dev python3-requests-oauthlib valac cmake python-nautilus libappindicator3-dev
1373 # cd /a/opt/indicator-kdeconnect
1376 # cmake .. -DCMAKE_INSTALL_PREFIX=/usr
1379 # # we can start it manually with /usr/lib/x86_64-linux-gnu/libexec/kdeconnectd
1380 # # it seems, according to
1381 # # /etc/xdg/autostart/kdeconnectd.desktop
1382 # # I'm not seeing the icon, but the clipboard replication is working
1385 ### model 01 arduino support ###
1386 # https://github.com/keyboardio/Kaleidoscope/wiki/Install-Arduino-support-on-Linux
1387 # also built latest arduino in /a/opt/Arduino, (just cd build; ant build; ant run )
1388 # set arduino var in bashrc,
1389 # have system config file setup too.
1390 sudo adduser $USER dialout
1393 sudo usermod -a -G uucp $USER
1397 # this is for the mail command too. update-alternatives is kind of misleading
1398 # since at least it's main commands pretend mail does not exist.
1399 # bsd's mail got pulled in on some dumb dependency, i dunno how.
1400 s update-alternatives --set mailx /usr/bin/mail.mailutils
1402 ######### end misc packages #########
1405 # packages I once used before and liked, but don\'t want installed now for
1407 # python-sqlite is used for offlineimap
1408 # lxappearance python-sqlite dolphin paman dconf-editor
1414 # todo, finish configuring smart.
1417 # mostly from https://wiki.archlinux.org/index.php/S.M.A.R.T.
1418 # turn on smart. background on options:
1419 # first line, -a = test everyting on all devices.
1420 # -S on, turn on disk internal saving of vendor specific info,
1421 # from google, seems like this is usually already on and fairly standard.
1422 # -o on, turn on 4 hour period non-performance degrading testing.
1423 # short test daily 2-3am, extended tests Saturdays between 3-4am:
1424 sched="-s (S/../.././02|L/../../6/03)"
1425 s sed -i --follow-symlinks "s#^[[:space:]]*DEVICESCAN.*#\
1426 DEVICESCAN -a -o on -S on -n standby,q $sched \
1427 -m ian@iankelling.org -M exec /usr/local/bin/smart-notify#" /etc/smartd.conf
1429 # in the default configuration of at least ubuntu 14.04, resolvconf is
1430 # configured to order any nameservers associated with tun* or tap*
1431 # before the normal internet interfaces, which means they are always
1432 # consulted first. This is often slower and undesirable, ie. local dns
1433 # queries go from 0ms to 10+ or 100+ ms. To reverse the ordering, you
1435 #sudo sed -i --follow-symlinks '/tun\*\|tap\*/d' /etc/resolvconf/interface-order
1436 # however, this breaks dns lookup for hosts on the openvpn lan.
1437 # I can\'t figure out why hosts on the normal lan would not be
1438 # broken under the default ordering, except the host I was
1439 # testing with previously had an entry in /etc/hosts.
1441 ############# end unfinished
1443 ########### misc stuff
1445 # make networkmanager use resolvconf instead of its own dnsmasq which
1446 # conflicts with the normal dnsmasq package.
1447 f=/etc/NetworkManager/NetworkManager.conf
1449 s sed -ri '/ *\[main\]/,/^ *\[[^]]+\]/{/^\s*dns[[:space:]=]/d}' $f
1450 if [[ $m != $(md5sum $f) ]]; then
1451 srestart NetworkManager
1454 # make my /etc/fonts/conf.d/ get used.
1455 # I have a new sans-serif font there because the default one
1456 # displays l and I as the same char, grrrrr.
1459 /a/bin/distro-setup/mymimes
1465 # stop autopoping windows when i plug in an android phone.
1466 # dbus-launch makes this work within an ssh connection, otherwise you get this message,
1467 # with still 0 exit code.
1468 # dconf-WARNING **: failed to commit changes to dconf: Cannot autolaunch D-Bus without X11 $DISPLAY
1469 dbus-launch gsettings set org.gnome.desktop.media-handling automount-open false
1472 # on grub upgrade, we get prompts unless we do this
1474 for dev in $(s btrfs fil show /boot | sed -nr 's#.*path\s+(\S+)$#\1#p'); do
1475 devs+=("$(devbyid $dev),")
1477 devs[-1]=${devs[-1]%,} # jonied by commas
1478 s debconf-set-selections <<EOF
1479 grub-pc grub-pc/install_devices multiselect ${devs[*]}
1483 sgo btrfsmaint.timer
1484 sgo btrfsmaintstop.timer
1487 # the wiki backup script from ofswiki.org uses generic paths
1488 s lnf /p/c/machine_specific/li/mw_vars /root
1489 s lnf /k/backup/wiki_backup /root
1493 trisquel|ubuntu|debian)
1494 # unison-gtk second, i want it to be default, not sure if that works
1495 # with spa. note, I used to install from testing repo when using stable,
1496 # but it shouldn't be needed since I wrote a script to handle mismatching
1498 spa unison unison-gtk
1507 # default is alsa, doesn\'t work with with pianobar
1508 s dd of=/etc/libao.conf <<'EOF'
1509 default_driver=pulse
1514 # # disabled due to my patch being in btrbk
1516 # arch|debian|trisquel|ubuntu) pi btrbk ;;
1523 # note: to see when it was last run,
1528 In mate settings settings, change scrolling to two-finger,
1529 because the default edge scroll doesn\'t work. Originally found this in debian.
1534 # remove dep that came in with desktop
1541 debian|trisquel|ubuntu) s gpasswd -a iank adm ;; #needed for reading logs
1544 /a/bin/buildscripts/pithosfly
1547 # based on guix manual instructions, also added code to profile
1549 if ! type -p guix >/dev/null; then
1551 wget https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh
1552 # added some stuff to envonment.sh for profile based on
1553 # manual instructions
1554 # wget https://sv.gnu.org/people/viewgpg.php?user_id=15145 -qO - | gpg --import -
1555 # echo is to get past prompt
1556 yes | sudo -E HOME=$HOME bash guix-install.sh || [[ $? == 141 ]]
1557 guix install glibc-utf8-locales
1558 guix package --install guile
1562 curl https://sh.rustup.rs -sSf | bash -s -- -y
1563 # todo: update this. updates in rust are stupidly complicate
1564 if ! which rg &>/dev/null; then
1565 cargo install ripgrep
1571 # https://www.torproject.org/docs/rpms.html.en
1572 # https://www.torproject.org/docs/debian.html.en
1573 # todo: figure out if the running service needs to be restarted upon updates
1574 # todo on fedora: setup non-dev packages
1576 s dd of=/etc/yum.repos.d/torproject.repo <<'EOF'
1578 name=Tor experimental repo
1580 baseurl=http://deb.torproject.org/torproject.org/rpm/tor-testing/fc/20/$basearch/
1582 gpgkey=http://deb.torproject.org/torproject.org/rpm/RPM-GPG-KEY-torproject.org.asc
1585 name=Tor experimental source repo
1588 baseurl=http://deb.torproject.org/torproject.org/rpm/tor-testing/fc/20/SRPMS
1590 gpgkey=http://deb.torproject.org/torproject.org/rpm/RPM-GPG-KEY-torproject.org.asc
1593 # to be secure, take a look at the fingerprint reported from the following install, and see if it matches from the link above:
1594 # 3B9E EEB9 7B1E 827B CF0A 0D96 8AF5 653C 5AC0 01F1
1596 /a/bin/buildscripts/tor-browser
1599 tu /etc/apt/sources.list "deb http://deb.torproject.org/torproject.org $(debian-codename) main"
1600 gpg --keyserver keys.gnupg.net --recv 886DDD89
1601 gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
1603 pi deb.torproject.org-keyring
1605 /a/bin/buildscripts/tor-browser
1609 /a/bin/buildscripts/tor-browser
1612 pi tor tor-browser-en
1622 fedora todo: disable the firewall or find a way to automate it.
1623 there's an unused section in t.org for tramikssion firewall setup
1625 fedora manual config for nfs:
1627 change to permanent configuration
1628 check the box for nfs
1629 was hard to figure this out, not sure if this is all needed, but
1631 mountd: udp/tcp 20048
1632 portmapper, in firewall-config its called rpc-bind: udp/tcp 111
1633 troubleshooting, unblock things in rpcinfo -p
1634 make sure to reload the firewall to load the persistent configuration
1640 debian|trisquel|ubuntu)
1641 pi-nostart nfs-server
1644 pi nfs-utils || pending_reboot=true
1648 # networkmanager has this nasty behavior on flidas: if the machine
1649 # crashes with dnsmasq running, on subsequent boot, it adds an entry to
1650 # resolvconf for 127.0.0.1 in some stupid attempt to restore
1652 # This can be manually fixed by stoping dnsmasq,
1653 # then based on whats in /run/dnsmasq/, i see we can run
1654 # s resolvconf -d NetworkManager
1655 # oh ya, and stoping NetworkManager leaves this crap behind without cleaning it up.
1656 ser stop NetworkManager
1657 ser disable NetworkManager
1660 if [[ $HOSTNAME == frodo ]]; then
1661 # nohide = export filesystems mounted deeper than the export point
1662 # fsid=0 makes this export the "root" export
1663 # not documented in the man page, but this means
1664 # 1. it can be mounted with a shorthand of server:/
1665 # 2. exports that are subdirectories of this one will automatically be mounted
1666 tu /etc/exports <<'EOF'
1667 /k 10.0.0.0/24(rw,fsid=0,nohide,no_root_squash,async,no_subtree_check,insecure)
1677 # if I was going to create a persistent vm, i might do it like this:
1678 # variant=something # from: virt-install --os-variant list
1679 # s virt-install --noautoconsole --graphics spice,listen=0.0.0.0 \
1680 # --disk=/a/images/some_name.qcow2,bus=virtio --vcpus 2 -r 4096 -w bridge=br0 \
1681 # -n some_name --import --os-variant $variant --cpu host-model-only
1685 ######### begin stuff belonging at the end ##########
1687 echo 0 >~/.local/distro-end
1688 if $pending_reboot; then
1689 echo "$0: pending reboot and then finished. doing it now."
1692 echo "$0: $(date): ending now)"