Warning!

Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!

Fix umask of upload_logs in buildd/functions.sh
authorMichael Prokop
Sat Dec 22 10:30:49 2007 +0100 (11 months ago)
changeset 420eb49b666532f
manifesteb49b666532f
parent 419955846aeceda
child 4210512b73a477d
Fix umask of upload_logs in buildd/functions.sh
buildd/functions.sh
--- a/buildd/functions.sh Sat Dec 22 09:59:43 2007 +0100
+++ b/buildd/functions.sh Sat Dec 22 10:30:49 2007 +0100
@@ -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}"/
}