diff options
author | EuAndreh <eu@euandre.org> | 2022-03-25 08:09:08 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-03-25 08:09:08 -0300 |
commit | 1b800757bfe017f62bef3cc4bb4f16abd7538fc7 (patch) | |
tree | c2e8b39b398030538cda5de2298cf1b7f6b9e257 /src/infrastructure | |
parent | TODOs.md: Add #td-9b20afc8-c1f0-ceef-07cb-be18bdd922eb (diff) | |
download | toph-1b800757bfe017f62bef3cc4bb4f16abd7538fc7.tar.gz toph-1b800757bfe017f62bef3cc4bb4f16abd7538fc7.tar.xz |
src/infrastructure/machines.scm: Move relevant FIXME markers to TODOs.md
Diffstat (limited to 'src/infrastructure')
-rw-r--r-- | src/infrastructure/machines.scm | 29 |
1 files changed, 3 insertions, 26 deletions
diff --git a/src/infrastructure/machines.scm b/src/infrastructure/machines.scm index 9ebdd82..70e6cb2 100644 --- a/src/infrastructure/machines.scm +++ b/src/infrastructure/machines.scm @@ -24,11 +24,11 @@ ;; $ ssh-keygen ;; - *manually* add that to the authorized_keys on rsync.net: ;; $ scp $R:.ssh/authorized_keys src/rsync.net/ -;; $ # FIXME: add 'restrict,command="..."' to the authorized_keys entry +;; $ # add 'restrict,command="..."' to the authorized_keys entry ;; $ ssh $SERVER cat .ssh/id_rsa.pub >> authorized_keys ;; $ scp src/rsync.net/authorized_keys $R:.ssh/ ;; - copy borg key after the first backup: -;; $ FIXME +;; $ ? ;; - generate DKIM key ;; $ guix shell openssl -- openssl genrsa -out /opt/secrets/dkim.arrobaponto.org.key 1024 ;; $ guix shell openssl -- openssl rsa -in /opt/secrets/dkim.arrobaponto.org.key -pubout -out /opt/secrets/dkim.arrobaponto.org.pub @@ -36,25 +36,6 @@ ;; to ~/.bashrc and ~root/.bashrc ;; -;; -;; Friendly reminder that I've actually installed and configure email + XMPP o -;; a Debian server in Vultr! I just deleted the snapshot that I made in case -;; of restoring, and I deleted it just now to save money and stop paying for it. -;; - -;; -;; TODO (FIXME): -;; - maddy (spamassasin? fail2ban? rspamd? blacklistd?) -;; - dns (knot) -;; - prosody? matrix-conduit? Read again HN comments on Dino 0.3 release. Maybe manage both for a while. -;; - httpd? -;; - -;; -;; FIXME: -;; - resize machine -;; - (define profile-extra (plain-file "profile-extra" #"""- @@ -226,11 +207,7 @@ (define cronjobs (list - #~(job "0 30 * * 0" "guix gc -d 1m -F 10G") - ;; FIXME: wat!? There is a /root/dead.letter file!? - ;; #~(job "* * * * *" "sh /etc/with-email.sh -s '[CRON] toph: xablau' -- seq 10 20 >&1") - #~(job "* * * * *" "whoami") - #~(job "* * * * *" "seq 20 30 >&2"))) + #~(job "0 30 * * 0" "guix gc -d 1m -F 10G"))) (define admin-user "andreh") |