+=== Skripte etc ===
+/home/regolas-rsync/bin/regolas-rsync:
+ #!/bin/sh
+ rsync \
+ --recursive --delete --stats \
+ --chmod=D2755,F644 \
+ --exclude='.*' \
+ /var/www/html/ theodem-rsync@regolas:/var/www/data.stratum0.org/ | \
+ sed 's/^/regolas-rsync: /'
+
+/etc/systemd/system/regolas-rsync.service:
+ [Unit]
+ Description=rsync everything from /var/www/html to regolas
+ Requires=network.target
+
+ [Service]
+ User=regolas-rsync
+ Group=www-data
+ ExecStart=/bin/sh -c ' \
+ while true; do \
+ if [ -r /var/www/html/.dirty ]; then \
+ /home/regolas-rsync/bin/regolas-rsync; \
+ rm -f /var/www/html/.dirty; \
+ fi; \
+ sleep 1; \
+ done'
+ Restart=always
+
+ [Install]
+ WantedBy=multi-user.target
+
+=== Services ===
+* [https://data.stratum0.org/finanz/ Finanzreport] (Schatzmeister)
+** Git-Hook in /var/lib/gitolite3/repositories/s0v-finanzen.git/hooks/post-receive
+
+
+==== SSH-Config ====
+Die folgende ~/.ssh/config ist ein Beispiel, wie theodem erreicht werden kann.
+
+ Host theodem
+ User <user>
+ Port 2222
+ HostName theodem.stratum0.org
+
+==== gitolite ====
+
+===== Übersicht der eigenen Repositories =====
+
+Man kann sich alle Repositories anzeigen lassen, auf die man zugriff hat:
+
+ $ ssh git@theodem
+
+ hello chrissi, this is git@theodem running gitolite3 3.6.6-1 (Debian) on git 2.11.0
+
+ R W gitolite-admin
+ R W s0v-dokumente
+ R W s0v-finanzen
+ R W s0v-mails2011
+ R W s0v-mails2012
+ R W s0v-mails2013
+ R W s0v-mails2014
+ R W s0v-mails2015
+ R W s0v-mails2016
+ R W s0v-mails2017
+ R W s0v-mails2018
+ R W s0v-mails2019
+
+===== Repository klonen =====
+Die URL eines Repositories ergibt sich aus seinem Namen und der Basisurl:
+
+ git@theodem:<Name>
+
+z.B.:
+ git@theodem:s0v-dokumente