Removed support for the shadow file since we don't install it in the
[mirror/userdir-ldap.git] / ud-replicate
1 #! /bin/sh
2
3 #   Copyright (c) 1999-2001  Jason Gunthorpe <jgg@infodrom.org>
4 #   Copyright (c) 2002-2003  Ryan Murray <rmurray@infodrom.org>
5 #   Copyright (c) 2004  Joey Schulze <joey@infodrom.org>
6 #
7 #   This program is free software; you can redistribute it and/or modify
8 #   it under the terms of the GNU General Public License as published by
9 #   the Free Software Foundation; either version 2 of the License, or
10 #   (at your option) any later version.
11 #
12 #   This program is distributed in the hope that it will be useful,
13 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #   GNU General Public License for more details.
16 #
17 #   You should have received a copy of the GNU General Public License
18 #   along with this program; if not, write to the Free Software
19 #   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 set -e
22
23 # Without effect on the commandline
24 if [ -z "$PS1" -o "$TERM" = "dumb" ]
25 then
26     exec > /dev/null 2>&1
27 else
28     verbose=-v
29 fi
30
31 HOST=`hostname -f`
32 cd /tmp/
33 cd /var/lib/misc || cd /var/state/glibc/ || cd /var/db/
34 lockfile -r 1 -l 3600 lock
35 trap "rm -f lock" exit
36
37 case $HOST in
38 *samosa*)
39     udhost=
40     ;;
41 *)
42     udhost="sshdist@samosa:"
43     ;;
44 esac
45
46 rsync ${verbose} -e ssh -rp "${udhost}/var/cache/userdir-ldap/hosts/$HOST" .
47
48 makedb "$HOST/passwd.tdb" -o passwd.db.t
49 (umask 027 && makedb "$HOST/shadow.tdb" -o shadow.db.t)
50 chown root.shadow shadow.db.t; chmod 0640 shadow.db.t
51 makedb "$HOST/group.tdb" -o group.db.t
52 mv -f passwd.db.t passwd.db
53 mv -f shadow.db.t shadow.db
54 mv -f group.db.t group.db
55 ln -sf "$HOST/ssh-rsa-shadow" .
56 ln -sf "$HOST/ssh_known_hosts" .
57
58 if [ -x /usr/bin/dchroot ]; then
59         CHROOTS=`dchroot --listpaths`
60         for c in $CHROOTS; do
61                 test -d "$c/var/lib/misc/HOST" || mkdir -p "$c/var/lib/misc/HOST"
62
63                 rsync -a ${verbose} $HOST/group.tdb $HOST/passwd.tdb $HOST/ssh* "$c/var/lib/misc/$HOST"
64
65                 test -f "$c/var/lib/misc/$HOST/shadow.tdb" || rm -f "$c/var/lib/misc/$HOST/shadow.tdb"
66                 test -f "$c/var/lib/misc/shadow.db" || rm -f "$c/var/lib/misc/shadow.db"
67
68                         chroot "$c" makedb "/var/lib/misc/$HOST/passwd.tdb" -o /var/lib/misc/passwd.db.t
69                         chroot "$c" makedb "/var/lib/misc/$HOST/group.tdb" -o /var/lib/misc/group.db.t
70                         mv -f "$c/var/lib/misc/passwd.db.t" "$c/var/lib/misc/passwd.db"
71                         mv -f "$c/var/lib/misc/group.db.t" "$c/var/lib/misc/group.db"
72                         ln -sf "$c/var/lib/misc/$HOST/ssh-rsa-shadow" "$c/var/lib/misc/"
73                         ln -sf "$c/var/lib/misc/$HOST/ssh_known_hosts" "$c/var/lib/misc/"
74         done
75 fi
76
77 if [ -d "/etc/exim" -a -e "$HOST/bsmtp" ]; then
78         if perl -e 'exit !((stat "/etc/exim/bsmtp")[9] < time()-3600)'; then
79                 cp "$HOST/bsmtp" /etc/exim/bsmtp
80         fi
81 fi
82 if [ -d "/etc/postfix" -a -f "$HOST/forward-alias" ]; then
83         sed -e 's/:/@debian.org/' $HOST/forward-alias > /etc/postfix/debian
84         /usr/sbin/postmap hash:/etc/postfix/debian < /etc/postfix/debian || true
85 fi