From 51cbe99104f45dd688c4c7f1257ac24aa9fe6afb Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 19 Apr 2018 13:40:27 -0400 Subject: [PATCH] installer: default to the daemon installor for Linux with systemd Note: don't backport to 2.0-maintenance --- scripts/install-nix-from-closure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-nix-from-closure.sh b/scripts/install-nix-from-closure.sh index 4d01eb58..cd71d794 100644 --- a/scripts/install-nix-from-closure.sh +++ b/scripts/install-nix-from-closure.sh @@ -34,7 +34,7 @@ fi if [ "$(uname -s)" = "Darwin" ]; then INSTALL_MODE=daemon elif [ "$(uname -s)" = "Linux" ] && [ -e /run/systemd/system ]; then - INSTALL_MODE=no-daemon + INSTALL_MODE=daemon else INSTALL_MODE=no-daemon fi