From 2d3056cdcf51daffcdb6c482940a76ec6d565d4f Mon Sep 17 00:00:00 2001 From: "Leigh B. Stoller" Date: Fri, 16 Jan 2009 22:52:59 +0000 Subject: [PATCH] Remove the noreload option to nfree; I used this for debugging but not a good thing in production. --- protogeni/lib/GeniSliver.pm.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protogeni/lib/GeniSliver.pm.in b/protogeni/lib/GeniSliver.pm.in index 0aade59ae..8159db267 100644 --- a/protogeni/lib/GeniSliver.pm.in +++ b/protogeni/lib/GeniSliver.pm.in @@ -1,7 +1,7 @@ #!/usr/bin/perl -wT # # EMULAB-COPYRIGHT -# Copyright (c) 2008 University of Utah and the Flux Group. +# Copyright (c) 2008-2009 University of Utah and the Flux Group. # All rights reserved. # package GeniSliver; @@ -907,10 +907,10 @@ sub UnProvision($) "Could remove virtnode entry for $pnode from $self\n"; return -1; } - system("export NORELOAD=1; $NFREE -x -q $pid $eid $pnode_id"); + system("$NFREE -x -q $pid $eid $pnode_id"); } else { - system("export NORELOAD=1; $NFREE -q $pid $eid $node_id"); + system("$NFREE -q $pid $eid $node_id"); } if ($?) { print STDERR "Could not deallocate $node from $self\n"; -- GitLab