Add option "use_mq" to allow disabling the use of mq_notify in ud-generate
[mirror/userdir-ldap.git] / ud-replicate
index 4f2db0e..23dc9fa 100755 (executable)
@@ -74,7 +74,7 @@ if [ -e /var/lib/misc/thishost/dns-zone ]; then
   cp /var/lib/misc/thishost/dns-zone $tempfile2
 fi
 
-rsync ${verbose} --delete-after --times -e 'ssh -i /etc/ssh/ssh_host_rsa_key -o PreferredAuthentications=publickey' -rp "${udhost}/var/cache/userdir-ldap/hosts/$HOST" .
+rsync ${verbose} --delete-after --times -e 'ssh -i /etc/ssh/ssh_host_rsa_key -o ControlPath=/var/run/.ud-replicate.ssh.socket -o ControlMaster=auto -o ControlPersist=2h -o BatchMode=yes' -rp "${udhost}/var/cache/userdir-ldap/hosts/$HOST" .
 
 makedb "$HOST/passwd.tdb" -o passwd.db.t
 if [ -s "$HOST/shadow.tdb" ]
@@ -167,21 +167,38 @@ if [ -d "/etc/postfix" -a -f "$HOST/forward-alias" ]; then
        /usr/sbin/postmap hash:/etc/postfix/debian < /etc/postfix/debian || true
 fi
 
-rndc_reload=0
+rebuild_zones=0
 if [ -e /var/lib/misc/thishost/dns-sshfp ]; then
-  if ! cmp -s /var/lib/misc/thishost/dns-sshfp $tempfile; then
-    /git/HOOKS/write_zonefile "$EMAILAPPEND"
-    rndc_reload=1
+  if ! cmp -s /var/lib/misc/thishost/dns-sshfp "$tempfile"; then
+    rebuild_zones=1
   fi
 fi
 
 if [ -e /var/lib/misc/thishost/dns-zone ]; then
-  if ! cmp -s /var/lib/misc/thishost/dns-zone $tempfile2; then
-    /git/HOOKS/write_zonefile debian.net
-    rndc_reload=1
+  if ! cmp -s /var/lib/misc/thishost/dns-zone "$tempfile2"; then
+    rebuild_zones=1
   fi
 fi
 
-if [ "${rndc_reload}" -gt 0 ]; then
-  rndc reload
+if [ "${rebuild_zones}" -gt 0 ]; then
+  sudo -u dnsadm /srv/dns.debian.org/bin/update
+fi
+
+if [ -d "/etc/freeradius" -a -e "$HOST/rtc-passwords" ]; then
+       if ! cmp -s "$HOST/rtc-passwords" /var/local/rtc-passwords.freerad; then
+               install -o freerad -g freerad -m 400 "$HOST/rtc-passwords" /var/local/rtc-passwords.freerad
+               service freeradius reload
+       fi
+fi
+if [ -d "/etc/reTurn" -a -e "$HOST/rtc-passwords" ]; then
+       if ! cmp -s "$HOST/rtc-passwords" /var/local/rtc-passwords.return; then
+               install -o return -g return -m 400 "$HOST/rtc-passwords" /var/local/rtc-passwords.return
+               service resiprocate-turn-server reload
+       fi
+fi
+if [ -d "/etc/prosody" -a -e "$HOST/rtc-passwords" ]; then
+       if ! cmp -s "$HOST/rtc-passwords" /var/local/rtc-passwords.prosody; then
+               install -o prosody -g prosody -m 400 "$HOST/rtc-passwords" /var/local/rtc-passwords.prosody
+               service prosody reload
+       fi
 fi