forked from lix-project/hydra
18a3c3ff1c
Also, if the machines file contains an entry for localhost, then run "nix-store --serve" directly, without going through SSH.
6 lines
271 B
Perl
6 lines
271 B
Perl
use strict;
|
|
system("chmod -R a+w nix") == 0 or die;
|
|
system("rm -rf data nix git-repo hg-repo svn-repo svn-checkout svn-checkout-repo bzr-repo bzr-checkout-repo darcs-repo") == 0 or die;
|
|
system("rm -f .*-state") == 0 or die;
|
|
system("dropdb hydra-test-suite") == 0 or die;
|