A lowly tech priest's attempt to please Mars
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: run sshd without debug

+5 -10
+3 -8
containers/knot/start.sh
··· 16 16 chmod 600 /safe_ssh_keys/* 17 17 chmod 644 /safe_ssh_keys/*.pub 18 18 19 - /usr/sbin/sshd -d -f /sshd_config & 20 - sshd_pid=$! 19 + # Start sshd in the background 20 + /usr/sbin/sshd -f /sshd_config 21 21 22 - /usr/sbin/knot server & 23 - server_pid=$! 24 - 25 - # Wait for any of the two background commands to exit and exit the container if that happens. 26 - wait -n $sshd_pid $server_pid 27 - exit $? 22 + /usr/sbin/knot server
+2 -2
kubernetes/apps/at/pds/knot.yaml
··· 27 27 app: 28 28 image: 29 29 repository: codeberg.org/bgotink/knot 30 - tag: 1.13.0-alpha@sha256:347550b3d3e36799a21948bbe0b67592d58043d28bdd0a0ee868321eb117a5b6 30 + tag: 1.13.0-alpha@sha256:537f0a0635960e9543d005f114e3362ce6137cdae73b5cc7423292fa9c530aa7 31 31 env: 32 32 TZ: ${TIMEZONE} 33 33 34 34 KNOT_SERVER_HOSTNAME: &hostname "knot.${ATPROTO_HOST}" 35 35 # KNOT_SERVER_OWNER set via secret 36 - KNOT_SSH_KEYS_PATH: /ssh-keys/keys 36 + KNOT_SSH_KEYS_PATH: /ssh-keys 37 37 KNOT_SERVER_DB_PATH: /data/knotserver.db 38 38 KNOT_REPO_SCAN_PATH: /repositories 39 39 envFrom: