From af3247faeb71f654c3f70bc34160df36933cabc3 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Fri, 3 Jun 2022 23:51:32 -0700 Subject: [PATCH] Update docs after #91 --- manual/src/release-notes.md | 1 + src/nix/hive/options.nix | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/manual/src/release-notes.md b/manual/src/release-notes.md index 09d64f5..af34b25 100644 --- a/manual/src/release-notes.md +++ b/manual/src/release-notes.md @@ -3,6 +3,7 @@ ## Release 0.4.0 (Unreleased) - `--reboot` is added to trigger a reboot and wait for the node to come back up. +- The target user is no longer explicitly set when `deployment.targetUser` is null ([#91](https://github.com/zhaofengli/colmena/pull/91)). ## [Release 0.3.0](https://github.com/zhaofengli/colmena/releases/tag/v0.3.0) (2022/04/27) diff --git a/src/nix/hive/options.nix b/src/nix/hive/options.nix index a07df1c..e19c4c0 100644 --- a/src/nix/hive/options.nix +++ b/src/nix/hive/options.nix @@ -118,8 +118,8 @@ with builtins; rec { }; targetUser = lib.mkOption { description = '' - The user to use to log into the remote node. If null, login as the - current user. + The user to use to log into the remote node. If set to null, the + target user will not be specified in SSH invocations. ''; type = types.nullOr types.str; default = "root";