Merge pull request #1486 from grahamc/detect-already-running

Test to see if nix-daemon is running already
This commit is contained in:
Eelco Dolstra 2017-07-25 09:24:06 +02:00 committed by GitHub
commit 24883645a6
1 changed files with 13 additions and 0 deletions

View File

@ -296,6 +296,19 @@ EOF
Nix already appears to be installed, and this tool assumes it is
_not_ yet installed.
$(uninstall_directions)
EOF
fi
if pgrep nix-daemon 2> /dev/null >&2; then
failure <<EOF
Nix seems to be partially installed, because the nix-daemon is
currently running. It may be in a launchd service. Please stop the
the old nix-daemon, and try again.
If you have an existing launchd plist for nix-daemon, please delete
it.
$(uninstall_directions)
EOF
fi