X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=distro-end;h=d51cbef4eb10ef72fc2c623c5a234c94ebb1d46a;hb=cca99b5a9d3cf311585a9c37b39698b0febe417c;hp=00827b638485bc4986817920e371e1aee378856a;hpb=b857462732e15f455e41f26e3048a390d7b399c0;p=distro-setup diff --git a/distro-end b/distro-end index 00827b6..d51cbef 100755 --- a/distro-end +++ b/distro-end @@ -73,7 +73,6 @@ case $distro in ;; esac - # disable motd junk. case $distro in debian) @@ -116,8 +115,15 @@ if isdeb; then $(debian-codename-compat) \ stable" p update - pi docker-ce - sgo docker + # docker eats up a fair amount of cpu when doing nothing, so don't enable it unless + # we really need it. + pi-nostart docker-ce + # and docker is even more crap, it ignores that it shouldnt start + ser stop docker + ser disable docker + case $HOSTNAME in + li|lj) sgo docker ;; + esac # other distros unknown fi ### end docker install #### @@ -167,6 +173,8 @@ case $HOSTNAME in ;; esac +pi ${p1[@]} + # website setup case $HOSTNAME in lj|li) @@ -303,6 +311,7 @@ EOF git clone https://github.com/pump-io/pump.io.git cd pump.io fi + # note: these 2 commands seem # note: doing this or the npm install pump.io as root had problems. npm install npm run build @@ -312,7 +321,7 @@ EOF # https://github.com/pump-io/pump.io/issues/1287 s npm install -g databank-mongodb@0.19.2 if ! getent passwd pumpio &>/dev/null; then - s useradd -m -s /bin/false pumpio + s useradd -Um -s /bin/false pumpio fi sudo -u pumpio mkdir -p /home/pumpio/pumpdata # for testing browser when only listening to localhost, @@ -481,7 +490,7 @@ EOF ############### !!!!!!!!!!!!!!!!! ############### manual steps: - # only following 2 people atm, so not bothering to figure out backups + # only following a few people atm, so not bothering to figure out backups # when mastodon has not documented it at all. # # fsf@status.fsf.org @@ -508,21 +517,39 @@ EOF # to exit and save config: # /msg *status shutdown # configed auth on freenode by following - # https://wiki.znc.in/Sasl + # https://wiki.znc.in/Sasl: + # /msg *sasl RequireAuth yes + # /msg *sasl Mechanism PLAIN + # /msg *sasl Set ident_name password # created the system service after, and had to do # mv /home/iank/.znc/* /var/lib/znc # sed -i 's,/home/iank/.znc/,/var/lib/znc,' /var/lib/znc/config/znc.conf # and made a copy of the config files into /p/c - # added LoadModule = log -sanitize to the top level + # /msg *status LoadMod --type=global log -sanitize # to get into the web interface, # cat /etc/letsencrypt/live/iankelling.org/{privkey,cert,chain}.pem > /var/lib/znc/znc.pem # then use non-main browser or else it doesn't allow it based on ocsp stapling from my main site. + # https://iankelling.org:12533/ # i'm going to figure out how to automate this when it expires. i know i can hook a script into the renewal. https://wiki.znc.in/FAQ seems to imply that znc doesn\'t need restart. # todo: in config file AllowWeb = true should be false. better security if that is off unless we need it. - # todo: figure out how to make playback in erc happe.n + # /msg *status LoadMod --type=network perform + # /msg *perform add PRIVMSG ChanServ :invite #fsf-office + # /msg *perform add JOIN #fsf-office + # + # i set Buffer = 500 + # also ran /znc LoadMod clearbufferonmsg + # it would be nice if erc supported erc query buffers by doing + # /msg *status clearbuffer /dev/null <<'EOF' [Unit] Description=ZNC, an advanced IRC bouncer @@ -545,8 +572,13 @@ esac ########### end section including li/lj ############### -pi ${p4[@]} $(apt-cache search ruby[.0-9]+-doc| awk '{print $1}') +# depends gcc is a way to install suggests. this is apparently the only +# way to install suggests even if the main package is already +# installed. reinstall doesn't work, uninstalling can cause removing +# dependent packages. +pi ${pall[@]} $(apt-cache search ruby[.0-9]+-doc| awk '{print $1}') $(apt-cache depends gcc|grep -i suggests:| awk '{print $2}') +sgo fsf-vpn-dns-cleanup case $distro in trisquel|ubuntu) @@ -556,7 +588,11 @@ case $distro in s add-apt-repository -y ppa:ansible/ansible p update fi - pi ansible + s pip install --upgrade pip + # newer 2.7 versions have a bug that incorrectly detects trisquel version. fixed once 2.8 arrives + # in 2019 + pip install --user ansible=2.7.4 + #pi ansible ;; esac @@ -590,7 +626,7 @@ esac # s cp -r --parents /etc/openvpn/easy-rsa/keys /p/c/filesystem # s chown -R 1000:1000 /p/c/filesystem/etc/openvpn/easy-rsa/keys # # kw = kgpe work machine. -# for host in x2 kw; do +# for host in x2 x3 kw; do # vpn-mk-client-cert -b $host -n home b8.nz 1196 # dir=/p/c/machine_specific/$host/filesystem/etc/openvpn/client # mkdir -p $dir @@ -601,8 +637,8 @@ esac # key already exists, so this won't generate one, just the configs. vpn-server-setup -rds s tee -a /etc/openvpn/server/server.conf <<'EOF' -push "dhcp-option DNS 192.168.1.1" -push "route 192.168.1.0 255.255.255.0" +push "dhcp-option DNS 10.0.0.1" +push "route 10.0.0.0 255.255.0.0" client-connect /a/bin/distro-setup/vpn-client-connect EOF s sed -i --follow-symlinks 's/10.8./10.9./g;s/^\s*port\s.*/port 1196/' /etc/openvpn/server/server.conf @@ -680,10 +716,9 @@ fi case $distro in debian|trisquel|ubuntu) - # suggests because we want the resolvconf package. however, i install it earlier - # as well, so this is redundant. + # suggests resolvconf package. installing it here is redundant, but make sure anyways. # todo: check other distros to make sure it\'s installed - pi-nostart --install-suggests openvpn + pi-nostart openvpn resolvconf # pi-nostart does not disable ser disable openvpn ;; @@ -784,18 +819,21 @@ fi ####### begin misc packages ########### +# sakura config is owned by ian reset-sakura -sudo -u traci -i reset-sakura reset-konsole sudo -u traci -i reset-konsole +# traci xscreensaver we don't want to reset reset-xscreensaver -# this is packaged, but i see it's gotten a fair amount of development lately, -# so install from cabal. the options are needed to get over incompatible xmonad library versions -# but that stuff is in the global namespace, and it seems they don't conflict in practice. -pi libxss-dev # dependency based on build failure -cabal update -cabal install --upgrade-dependencies --force-reinstalls arbtt -lnf -T /m/arbtt-capture.log ~/.arbtt/capture.log + + +# this would install from cabal for newer / consistent version across os, but it screws up xmonad, so disabled for now. +# this is also in primary-setup +# pi libxss-dev # dependency based on build failure +# cabal update +# cabal install --upgrade-dependencies --force-reinstalls arbtt +# also, i assume syncing this between machines somehow messed thin +#lnf -T /m/arbtt-capture.log ~/.arbtt/capture.log primary-setup @@ -870,6 +908,83 @@ case $distro in # others unknown esac +case $(debian-codename) in + # needed for debootstrap scripts for fai since fai requires debian + flidas) + curl http://archive.ubuntu.com/ubuntu/project/ubuntu-archive-keyring.gpg | s apt-key add - + s dd of=/etc/apt/preferences.d/flidas-xenial </dev/null </dev/null < /dev/null; then fi +# We want group writable stuff from transmission. +# However, after setting this, I learn that transmission sets it's +# own umask based on it's settings file. Well, no harm leaving this +# so it's set right from the beginning. +s chfn debian-transmission -o umask=0002 + # trisquel 8 = openvpn, debian stretch = openvpn-client vpn_ser=openvpn-client if [[ ! -e /lib/systemd/system/openvpn-client@.service ]]; then @@ -1107,6 +1229,8 @@ require 'json' p = '/etc/transmission-daemon/settings.json' s = JSON.parse(File.read(p)) s["rpc-password"] = File.read("/p/transmission-rpc-pass").chomp +# default is 0022 (18 in decimal) +s["umask"] = 2 File.write p, JSON.pretty_generate(s) EOF @@ -1163,6 +1287,7 @@ case $distro in sgo org.cups.cupsd.service ;; debian|trisquel|ubuntu) + pi cups s gpasswd -a $USER lpadmin # based on ubuntu wiki spa hplip ;; @@ -1174,11 +1299,6 @@ esac # in arch, I had to pick out the 6L driver. -case $distro in - trisquel|ubuntu|debian) pi --no-install-recommends mairix notmuch ;; - fedora|arch) spa mairix notmuch ;; -esac - # allow user to run vms, from debian handbook for x in iank traci; do s usermod -a -G libvirt,kvm $x; done # bridge networking as user fails. google lead here, but it doesn\'t work: @@ -1313,7 +1433,7 @@ fi # EOF # s systemctl daemon-reload # case $HOSTNAME in -# x2|tp) +# x2|x3|tp) # ser enable synergyc@iank # ser start synergyc@iank ||: # X might not be running yet # ;; @@ -1402,6 +1522,19 @@ DEVICESCAN -a -o on -S on -n standby,q $sched \ ########### misc stuff +# make networkmanager use resolvconf instead of its own dnsmasq which +# conflicts with the normal dnsmasq package. +f=/etc/NetworkManager/NetworkManager.conf +m=$(md5sum $f) +s sed -ri '/ *\[main\]/,/^ *\[[^]]+\]/{/^\s*dns[[:space:]=]/d}' $f +if [[ $m != $(md5sum $f) ]]; then + srestart NetworkManager +fi + +# make my /etc/fonts/conf.d/ get used. +# I have a new sans-serif font there because the default one +# displays l and I as the same char, grrrrr. +s fc-cache /a/bin/distro-setup/mymimes @@ -1592,7 +1725,16 @@ EOF ;; esac - +# networkmanager has this nasty behavior on flidas: if the machine +# crashes with dnsmasq running, on subsequent boot, it adds an entry to +# resolvconf for 127.0.0.1 in some stupid attempt to restore +# nameservers. +# This can be manually fixed by stoping dnsmasq, +# then based on whats in /run/dnsmasq/, i see we can run +# s resolvconf -d NetworkManager +# oh ya, and stoping NetworkManager leaves this crap behind without cleaning it up. +ser stop NetworkManager +ser disable NetworkManager if [[ $HOSTNAME == frodo ]]; then @@ -1602,7 +1744,7 @@ if [[ $HOSTNAME == frodo ]]; then # 1. it can be mounted with a shorthand of server:/ # 2. exports that are subdirectories of this one will automatically be mounted tu /etc/exports <<'EOF' -/k 192.168.1.0/24(rw,fsid=0,nohide,no_root_squash,async,no_subtree_check,insecure) +/k 10.0.0.0/24(rw,fsid=0,nohide,no_root_squash,async,no_subtree_check,insecure) EOF s exportfs -rav fi