Mount src and dest partitions in /tmp instead of HOME. Thanks to Rémi Laurent.

pull/10/head
Raphaël Vinot 2013-08-02 13:49:13 +02:00
parent 16bdb575c1
commit 3835b5f887
1 changed files with 5 additions and 3 deletions

View File

@ -4,10 +4,12 @@ DEV_DST='/dev/sdb1'
USERNAME='kitten'
HOME="/home/${USERNAME}"
# Paths used in multiple scripts
SRC="${HOME}/src"
TMP="/tmp/"
DST="${HOME}/dst"
# Paths used in multiple scripts
SRC="${TMP}/src"
DST="${TMP}/dst"
TEMP="${DST}/temp"
ZIPTEMP="${DST}/ziptemp"
LOGS="${DST}/logs"