mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
* Don't try to do DNS lookups.
This commit is contained in:
parent
a4273156c4
commit
dcded7da47
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ bin_SCRIPTS = nix-collect-garbage \
|
||||||
nix-install-package nix-channel nix-build \
|
nix-install-package nix-channel nix-build \
|
||||||
nix-pack-closure nix-unpack-closure
|
nix-pack-closure nix-unpack-closure
|
||||||
|
|
||||||
noinst_SCRIPTS = nix-profile.sh generate-patches.pl
|
noinst_SCRIPTS = nix-profile.sh generate-patches.pl find-runtime-roots.pl
|
||||||
|
|
||||||
nix-pull nix-push: readmanifest.pm readconfig.pm download-using-manifests.pl
|
nix-pull nix-push: readmanifest.pm readconfig.pm download-using-manifests.pl
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ sub readProc {
|
||||||
|
|
||||||
|
|
||||||
sub lsof {
|
sub lsof {
|
||||||
return unless open LSOF, "lsof -b -w -F n |";
|
return unless open LSOF, "lsof -n -w -F n |";
|
||||||
|
|
||||||
while (<LSOF>) {
|
while (<LSOF>) {
|
||||||
next unless /^n (\/ .*)$/x;
|
next unless /^n (\/ .*)$/x;
|
||||||
|
|
Loading…
Reference in a new issue