aboutsummaryrefslogtreecommitdiffstats
path: root/mandriva/tmpdir.sh
diff options
context:
space:
mode:
Diffstat (limited to 'mandriva/tmpdir.sh')
-rw-r--r--mandriva/tmpdir.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/mandriva/tmpdir.sh b/mandriva/tmpdir.sh
new file mode 100644
index 00000000..c4e1abd6
--- /dev/null
+++ b/mandriva/tmpdir.sh
@@ -0,0 +1,24 @@
+#!/bin/sh
+# $Id$
+# Set TMPDIR to ~/tmp and create it if directory not exist.
+
+if [ -f /etc/sysconfig/shell ];then
+ . /etc/sysconfig/shell
+fi
+
+if [[ "$SECURE_TMP" = "yes" ]];then
+ if [ -d ${HOME}/tmp -a -w ${HOME}/tmp ];then
+ export TMPDIR=${HOME}/tmp
+ export TMP=${HOME}/tmp
+ elif mkdir -p ${HOME}/tmp >/dev/null 2>&1;then
+ chmod 700 ${HOME}/tmp
+ export TMPDIR=${HOME}/tmp
+ export TMP=${HOME}/tmp
+ else
+ export TMPDIR=/tmp
+ export TMP=/tmp
+ fi
+else
+ export TMPDIR=/tmp
+ export TMP=/tmp
+fi