X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXHash.pm;h=cf9f05211c202ff10cd42798f22542822921dd36;hb=refs%2Fheads%2Fnew-spawn;hp=1e3c833e0dfa5d7d7b1f842d426a38d322645d97;hpb=fd0a34c34ad4112ee21e0730f7307498ff437e18;p=spider.git diff --git a/perl/DXHash.pm b/perl/DXHash.pm index 1e3c833e..cf9f0521 100644 --- a/perl/DXHash.pm +++ b/perl/DXHash.pm @@ -8,7 +8,7 @@ # Things entered into the list are always upper # cased. # -# The files that are created live in /spider/data +# The files that are created live in /spider/local_data (was data) # # Dunno why I didn't do this earlier but heyho.. # @@ -28,7 +28,10 @@ use strict; sub new { my ($pkg, $name) = @_; - my $s = readfilestr($main::data, $name); + + # move existing file + localdata_mv($name); + my $s = readfilestr($main::local_data, $name); my $self = undef; $self = eval $s if $s; dbg("error in reading $name in DXHash $@") if $@; @@ -39,7 +42,7 @@ sub new sub put { my $self = shift; - writefilestr($main::data, $self->{name}, undef, $self); + writefilestr($main::local_data, $self->{name}, undef, $self); } sub add