source: MondoRescue/branches/2.2.0/tools/common-env@ 2183

Last change on this file since 2183 was 885, checked in by Bruno Cornec, 18 years ago

merge -r881:884 $SVN_M/branches/stable

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 365 bytes
Line 
1#!/bin/bash
2#
3# Creates common environment
4#
5# $Id: common-env 885 2006-10-08 10:11:38Z bruno $
6#
7
8# Adapt to your needs
9d=`dirname ${TOOLHOME}`
10if [ _"`basename ${d}/..`" = _"trunk" ]; then
11 BASE=${TOOLHOME}/../..
12else
13 BASE=${TOOLHOME}/../../..
14fi
15export TOPDIR=${BASE}/delivery
16mkdir -p ${TOPDIR}
17
18export TMPDIR=/tmp
19export MONDOTMP=`mktemp -d $TMPDIR/mondobuild.XXXXXXXXXX`
20mkdir -p $MONDOTMP
21
22umask 022
Note: See TracBrowser for help on using the repository browser.