ca-sign: Tell clients using our CA cert to update CRL every 30 days
[clinton/scripts.git] / apache-sync-logs
1 #!/bin/bash
2
3 # invoke this as root on mire
4
5 exec 2>&1
6
7 # drop any tokens; use only users' cgi tokens
8 kdestroy > /dev/null 2>&1
9 unlog
10
11 #VERBOSE=true
12 VERBOSE=false
13
14 LOCAL_LOG_DIR=/var/log/apache2/user
15 KEYTAB_DIR=/etc/keytabs/user.daemon
16 AFS_USER_DIR=/afs/hcoop.net/user
17 ERROR=no
18
19 # Sanify permissions so that we can safely create tmp directories and
20 # run rsync.
21 chmod -R u=rwX,g=rX,o=X $LOCAL_LOG_DIR
22
23 # Iterate through logs for each user
24 for A in $(find $LOCAL_LOG_DIR -mindepth 3 -maxdepth 3 -print); do
25 USER=`basename $A`
26 PATHBITS=`echo $USER | head -c 1`/`echo $USER | head -c 2`/$USER
27 LOG_SRC=$A/apache/log
28 LOG_DEST=$AFS_USER_DIR/$PATHBITS/.logs/apache/
29 TMP_DEST=$LOG_SRC.tmp
30
31 # Skip deleted or empty log directories
32 if test ! -d "$LOG_SRC" || ! ls "$LOG_SRC"/*/*/*.log >/dev/null 2>&1; then
33 continue
34 fi
35
36 if test "$VERBOSE" = "true"; then
37 echo
38 echo "=============================================================================="
39 echo "syncing logs for $USER from $A"
40 echo " to $LOG_DEST ..."
41 fi
42
43 if test ! -d "$LOG_DEST"; then
44 echo "Error: $LOG_DEST does not exist, please make it"
45 ERROR=yes
46 else
47 rm -fr $TMP_DEST
48 cp -r $LOG_SRC $TMP_DEST
49 chown -R $USER:nogroup $TMP_DEST
50 chmod -R u=rwX,go=X $TMP_DEST
51 k5start -qtU -f $KEYTAB_DIR/$USER \
52 -- su $USER -c "rsync -a $TMP_DEST/ $LOG_DEST/"
53 rm -fr $TMP_DEST
54 test "$VERBOSE" = "true" && echo " done."
55 fi
56 done
57
58 if test "$ERROR" = "yes"; then
59 exit 1
60 else
61 exit 0
62 fi
63