From: Michael Prokop Date: Sat, 22 Dec 2007 09:30:49 +0000 (+0100) Subject: Fix umask of upload_logs in buildd/functions.sh X-Git-Tag: 0.0.14~13 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=037587a2ef7210658d017d7fb1ad52b19852c834 Fix umask of upload_logs in buildd/functions.sh --- diff --git a/buildd/functions.sh b/buildd/functions.sh index 471a126..60667d5 100755 --- a/buildd/functions.sh +++ b/buildd/functions.sh @@ -78,7 +78,7 @@ create_logs() { # store logs on remote server: upload_logs() { [ -n "$RSYNC_MIRROR" ] || return 1 - umask 022 + umask 002 rsync --exclude dmesg.log --times --partial -az --quiet /var/log/grml-buildd.* \ $FAI_LOGFILES $GRML_LOGFILE $RSYNC_MIRROR/logs/"${NAME}_${DATE}"/ }