X-Git-Url: https://git.rohieb.name/stratum0-wiki.git/blobdiff_plain/c027dbfc9c361870b16d86680717f355421ed1cd..f72b127f504cda63ba8d02b09be07d7c2ba3b8aa:/Theodem.mw diff --git a/Theodem.mw b/Theodem.mw index be176b1c5..b974336c1 100644 --- a/Theodem.mw +++ b/Theodem.mw @@ -42,8 +42,46 @@ * Netzwerk intern, per DHCP * gitolite3 in /var/lib/gitolite3/, user git -** Git-Hooks im Admin-Repo: siehe http://gitolite.com/gitolite/gitolite.html#hooks +* s0v-finanzen-Repo: +** Git-Hooks im Admin-Repo: siehe http://gitolite.com/gitolite/gitolite.html#hooks +** s0v-finanzen-Hook-Scripte sind in /var/lib/gitolite3/scripts +** Hook ist manuell im Repository angelegt +** TODO: Nightly-Tests integrieren * SSH via Port-Forwarding von [[gandolf]], Port 2222 +* Alle Dateien in /var/www/html werden auf [[regolas]] gesynct, sobald die Datei /var/www/html/.dirty angelegt wird (z.B. durch Ausführen von /usr/local/bin/regolas-rsync, was auch stündlich als Cronjob geschieht). Die Dateien sind damit unter https://data.stratum0.org erreichbar. + +=== 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 + + [[Kategorie:Virtuelle Maschine]] [[Kategorie:Infrastruktur]]