source: MondoRescue/branches/2.0.8/tools/common-env@ 675

Last change on this file since 675 was 630, checked in by bcornec, 18 years ago
  • Fix a bug in common-env around umask too restrictive
  • Fix permissions for autorun
  • 2.0.8-2 now in Web pages
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 208 bytes
Line 
1#!/bin/bash
2#
3# Creates common environment
4#
5# $Id: common-env 630 2006-06-07 09:32:52Z bcornec $
6#
7
8# Adapt to your needs
9export BASE=${HOME}/mondo
10export TOPDIR=${BASE}/build
11mkdir -p ${TOPDIR}
12export TMPDIR=
13export TMP=`mktemp -d -p /tmp`
14
15umask 022
Note: See TracBrowser for help on using the repository browser.