Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
65e86635
Commit
65e86635
authored
Oct 08, 2006
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set TMPDIR to /usr/testbed/tmp to avoid filling small /tmp.
parent
32262340
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
tbsetup/libArchive.pm.in
tbsetup/libArchive.pm.in
+6
-1
No files found.
tbsetup/libArchive.pm.in
View file @
65e86635
...
...
@@ -66,7 +66,6 @@ my $TAGTYPE_INTERNAL = "internal";
#
umask
(
0002
);
#
On
or
off
sub
doarchiving
($)
{
...
...
@@ -83,9 +82,15 @@ sub mysystem($)
{
my
($
command
)
=
@
_
;
#
Need
a
big
TMPDIR
for
svn
stuff
.
my
$
tmpdir
=
$
ENV
{
'TMPDIR'
};
$
ENV
{
'TMPDIR'
}
=
"/usr/testbed/tmp"
;
print
STDERR
"Running '$command'
\n
"
if
($
debug
);
system
($
command
);
$
ENV
{
'TMPDIR'
}
=
$
tmpdir
if
(
defined
($
tmpdir
));
}
#
Another
little
helper
for
scripts
that
include
this
library
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment