fix some things, add znc arbtt
[distro-setup] / distro-end
index ea16efc5a1f204fd44d04163903729fcd4749b6c..96fd07b58c83b9a4b2785d90776e14685295561b 100755 (executable)
@@ -119,6 +119,7 @@ case $HOSTNAME in
             kid3-qt
             kid3-cli
             konsole
+            libreoffice
             linphone
             linux-doc
             locate
@@ -129,6 +130,7 @@ case $HOSTNAME in
             mb2md
             meld
             mps-youtube
+            mpv
             mumble
             nagstamon
             ncdu
@@ -408,7 +410,6 @@ COMMIT
 EOF
 
 
-
         sudo dd of=/etc/systemd/system/vpnmail.service <<EOF
 [Unit]
 Description=Turns on iptables mail nat
@@ -490,8 +491,8 @@ EOF
 
         # stretch node is too old
         # https://nodejs.org/en/download/package-manager/
-        curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
-        pi nodejs
+        curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
+        pi nodejs graphicsmagick mongodb
         cd /home/iank
         if [[ -e pump.io ]]; then
             cd pump.io
@@ -504,7 +505,7 @@ EOF
         npm install
         npm run build
         # normally, next command would be
-        # s npm install -g databank-mongodb
+        # s npm install -g   odb
         # but it\'s this until a bug in pump gets fixed
         # https://github.com/pump-io/pump.io/issues/1287
         s npm install -g databank-mongodb@0.19.2
@@ -577,11 +578,14 @@ EOF
         # note, docker required, but we installed it earlier
 
         # i subscrubed to https://github.com/docker/compose/releases.atom
-        # to deal with updates manually. So far, it means just reving the
-        # version number, then restarting docker-compose with
-        # cd ~/mastodon
-        # docker-compose up -d
-        curl -L https://github.com/docker/compose/releases/download/1.13.0/docker-compose-`uname -s`-`uname -m` | s dd of=/usr/local/bin/docker-compose
+        # to see release notes.
+        # i had some problems upgrading. blew things away with
+        # docker-compose down
+        # docker rmi $(docker images -q)
+        # s reboot now
+        # when running docker-compose run, kernel stack traces are printed to the journal.
+        # things seem to succeed, google says nothing, so ignoring them.
+        curl -L https://github.com/docker/compose/releases/download/1.18.0/docker-compose-`uname -s`-`uname -m` | s dd of=/usr/local/bin/docker-compose
         s chmod +x /usr/local/bin/docker-compose
 
 
@@ -609,7 +613,7 @@ LOCAL_HTTPS=true
 
 SINGLE_USER_MODE=true
 
-SMTP_SERVER=10.8.0.4
+SMTP_SERVER=mail.iankelling.org
 SMTP_PORT=25
 SMTP_LOGIN=li
 SMTP_FROM_ADDRESS=notifications@mast.iankelling.org
@@ -619,26 +623,39 @@ EOF
 
         for key in PAPERCLIP_SECRET SECRET_KEY_BASE OTP_SECRET; do
             # 1 minute 7 seconds to run this docker command
-            # to generate a secret. wtf, wtf, wtf, wtf
-            printf "%s=%s\n" $key "$(docker-compose run --rm web rake secret|tail -n1)" >>.env.production
+            # to generate a secret, and it has ^M chars at the end. wtf. really dumb
+            printf "%s=%s\n" $key "$(docker-compose run --rm web rake secret|dos2unix|tail -n1)" >>.env.production
         done
         found=false
-        s cat /etc/mailpass| while read -r domain port pass; do
+        while read -r domain port pass; do
             if [[ $domain == mail.iankelling.org ]]; then
                 found=true
+                # remove the username part
+                pass="${pass#*:}"
                 printf "SMTP_PASSWORD=%s\n" "$pass" >>.env.production
                 break
             fi
-        done
+        done < <(s cat /etc/mailpass)
         if ! $found; then
             echo "$0: error, failed to find mailpass domain for mastadon"
             exit 1
         fi
 
+        # docker compose makes an interface named like br-8f3e208558f2. we need mail to
+        # get routed to us.
+        if ! s /sbin/iptables -t nat -C PREROUTING -i br-+ -p tcp -m tcp --dport 25 -j DNAT --to-destination 10.8.0.4:25; then
+            s /sbin/iptables -t nat -A PREROUTING -i br-+ -p tcp -m tcp --dport 25 -j DNAT --to-destination 10.8.0.4:25
+        fi
+
         docker-compose run --rm web rake mastodon:webpush:generate_vapid_key | grep -E '^VAPID_PUBLIC_KEY=|^VAPID_PRIVATE_KEY=' >> .env.production
         logq docker-compose run --rm web rake db:migrate
         docker-compose run --rm web rails assets:precompile
 
+        # avatar failed to upload, did
+        # docker logs mastodon_web_1
+        # google lead me to this
+        s chown -R 991:991 public/system
+
         # docker daemon takes care of starting on boot.
         docker-compose up -d
 
@@ -679,6 +696,44 @@ EOF
         # we use nsupdate to update the ip of home
         pi bind9
 
+        pi znc
+        # znc config generated by doing
+        # znc --makeconf
+        # selected port is also used in erc config
+        # comma separated channel list worked.
+        # while figuring things out, running znc -D for debug in foreground.
+        # to exit and save config:
+        # /msg *status shutdown
+        # configed auth on freenode by following
+        # https://wiki.znc.in/Sasl
+        # 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
+        # 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.
+        # 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
+        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
+        chmod 700 /var/lib/znc
+        s dd of=/etc/systemd/system/znc.service 2>/dev/null <<'EOF'
+[Unit]
+Description=ZNC, an advanced IRC bouncer
+After=network-online.target
+
+[Service]
+ExecStart=/usr/bin/znc -f --datadir=/var/lib/znc
+User=znc
+
+[Install]
+WantedBy=multi-user.target
+EOF
+        ser daemon-reload
+        sgo znc
+
         echo "$0: $(date): ending now)"
         exit 0
         ;;
@@ -812,7 +867,7 @@ EOF
 fi
 
 ######### begin  pump.io periodic backup #############
-if [[ $HOSTNAME == tp ]]; then
+if [[ $HOSTNAME == frodo ]]; then
     s dd of=/etc/systemd/system/pumpbackup.service <<'EOF'
 [Unit]
 Description=pump li backup
@@ -840,7 +895,8 @@ fi
 
 case $distro in
     debian|trisquel|ubuntu)
-        # suggests because we want the resolvconf package.
+        # suggests because we want the resolvconf package. however, i install it earlier
+        # as well, so this is redundant.
         # todo: check other distros to make sure it\'s installed
         pi-nostart --install-suggests openvpn
         # pi-nostart does not disable
@@ -957,6 +1013,14 @@ reset-sakura
 sudo -u traci -i reset-sakura
 reset-konsole
 sudo -u traci -i reset-konsole
+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
 
 if [[ ! -e ~/.linphonerc && -e /p/.linphonerc-initial ]]; then
     cp /p/.linphonerc-initial ~/.linphonerc
@@ -1646,6 +1710,11 @@ case $distro in
 esac
 lnf -T /a/opt/sketches ~/Arduino
 
+# this is for the mail command too. update-alternatives is kind of misleading
+# since at least it's main commands pretend mail does not exist.
+# bsd's mail got pulled in on some dumb dependency, i dunno how.
+s update-alternatives --set mailx /usr/bin/mail.mailutils
+
 ######### end misc packages #########
 
 
@@ -1905,12 +1974,6 @@ esac
 ######### begin stuff belonging at the end    ##########
 
 
-# Apps we want to override others for default file handler:
-# simplest way in debian is to just install them last.
-simple_packages+=(
-    mpv
-)
-
 case $distro in
     ubuntu|debian)
         spa spacefm-gtk3 ;;