about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2018-04-19T17·40-0400
committerGraham Christensen <graham@grahamc.com>2018-04-19T17·45-0400
commit51cbe99104f45dd688c4c7f1257ac24aa9fe6afb (patch)
tree7a326dbb54b3555f9e2e63652bb839dd520915b1 /scripts
parent17b158af85296c1c815af237cf5626e79b6b0a70 (diff)
installer: default to the daemon installor for Linux with systemd
Note: don't backport to 2.0-maintenance
Diffstat (limited to 'scripts')
-rw-r--r--scripts/install-nix-from-closure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-nix-from-closure.sh b/scripts/install-nix-from-closure.sh
index 4d01eb589c81..cd71d7947d77 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