diff options
author | Graham Christensen <graham@grahamc.com> | 2018-04-19T17·40-0400 |
---|---|---|
committer | Graham Christensen <graham@grahamc.com> | 2018-04-19T17·45-0400 |
commit | 51cbe99104f45dd688c4c7f1257ac24aa9fe6afb (patch) | |
tree | 7a326dbb54b3555f9e2e63652bb839dd520915b1 /scripts | |
parent | 17b158af85296c1c815af237cf5626e79b6b0a70 (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.sh | 2 |
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 |