X-Git-Url: http://git.hcoop.net/clinton/scripts.git/blobdiff_plain/199f27012bf2047e04c66ebf9ce52cf99e8cfafd..294904cca616839be4752a7405c0651837e68cba:/apache-sync-logs diff --git a/apache-sync-logs b/apache-sync-logs index 3f83088..f5ee0ad 100755 --- a/apache-sync-logs +++ b/apache-sync-logs @@ -31,17 +31,26 @@ for A in $(find $LOCAL_LOG_DIR -mindepth 3 -maxdepth 3 -print); do # Skip deleted or empty log directories if test ! -d "$LOG_SRC" || ! ls "$LOG_SRC"/*/*/*.log >/dev/null 2>&1; then + if test "$VERBOSE" = "true"; then + echo "Skipping $USER (deleted or empty log dir $LOG_SRC)" + fi continue fi # Skip people who have unreadable log subdirectories if test -d "$USER_HOME/.logs" && \ ! ls "$USER_HOME/.logs" >/dev/null 2>&1; then + if test "$VERBOSE" = "true"; then + echo "Skipping $USER (unreadable log dir $USER_HOME/.logs)" + fi continue fi # Skip people who do not have keytabs if test ! -f "$KEYTAB_DIR/$USER"; then + if test "$VERBOSE" = "true"; then + echo "Skipping $USER (missing keytab $KEYTAB_DIR/$USER)" + fi continue fi