From 1ec1dd7ed23d08786f59729e377dc0333d828596 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 20 Nov 2012 04:59:32 +0000 Subject: make sure the root auto-build/ folder is writable before creating the daily folder svn path=/trunk/; revision=16563 --- scripts/auto-build/prep-auto-build-upload | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts/auto-build/prep-auto-build-upload') diff --git a/scripts/auto-build/prep-auto-build-upload b/scripts/auto-build/prep-auto-build-upload index 6f252e48..22ad74c7 100755 --- a/scripts/auto-build/prep-auto-build-upload +++ b/scripts/auto-build/prep-auto-build-upload @@ -10,9 +10,12 @@ LOGFILE=/tmp/${DATE}_${TIME}_-_${SCRIPT}_-_${SYSTEM}.txt BUILD_ROOT=/home/apt/www/auto-build TODAYS_ROOT="${BUILD_ROOT}/${DATE}" + +chmod u+w "$BUILD_ROOT" >> $LOGFILE 2>&1 mkdir "${TODAYS_ROOT}" >> $LOGFILE 2>&1 mkdir "${TODAYS_ROOT}/logs" >> $LOGFILE 2>&1 chmod -R a+r "${BUILD_ROOT}" >> $LOGFILE 2>&1 chmod -R a-w "${BUILD_ROOT}" >> $LOGFILE 2>&1 chmod 0755 "${TODAYS_ROOT}" >> $LOGFILE 2>&1 chmod 0755 "${TODAYS_ROOT}/logs" >> $LOGFILE 2>&1 +chmod a-w "$BUILD_ROOT" >> $LOGFILE 2>&1 -- cgit v1.2.1