From: mwolson_admin Date: Thu, 13 Mar 2008 01:56:16 +0000 (-0400) Subject: apache-sync-logs: Use sudo rather than su to protect against user .bashrc. X-Git-Url: https://git.hcoop.net/hcoop/scripts.git/commitdiff_plain/199f27012bf2047e04c66ebf9ce52cf99e8cfafd apache-sync-logs: Use sudo rather than su to protect against user .bashrc. --- diff --git a/apache-sync-logs b/apache-sync-logs index 53f0ae1..3f83088 100755 --- a/apache-sync-logs +++ b/apache-sync-logs @@ -64,7 +64,7 @@ for A in $(find $LOCAL_LOG_DIR -mindepth 3 -maxdepth 3 -print); do chown -R $USER:nogroup $TMP_DEST chmod -R u=rwX,go=X $TMP_DEST k5start -qtU -f $KEYTAB_DIR/$USER \ - -- su $USER -c "rsync -a $TMP_DEST/ $LOG_DEST/" + -- sudo -u $USER rsync -a $TMP_DEST/ $LOG_DEST/ rm -fr $TMP_DEST test "$VERBOSE" = "true" && echo " done." fi