From e28156c212bc7d6de8c0f7d44f8f1cbe96d43f34 Mon Sep 17 00:00:00 2001 From: Ivan Popovych Date: Thu, 19 Jun 2025 21:53:07 +0300 Subject: [PATCH] etc: guix-install.sh: Remove dependency on "which". * etc/guix-install.sh: Remove dependency on "which". Change-Id: I2f93ade98f92ab28b4657fa213b9164a148437e6 Signed-off-by: jgart --- etc/guix-install.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/etc/guix-install.sh b/etc/guix-install.sh index 68e96166a4c..3bf3a4a55e4 100755 --- a/etc/guix-install.sh +++ b/etc/guix-install.sh @@ -68,7 +68,6 @@ REQUIRE=( "wget" "gpg" "grep" - "which" "sed" "sort" "getent" @@ -458,11 +457,11 @@ create_account() if id "$user" &>/dev/null; then _msg_info "user '$user' is already in the system, reset" usermod -g "$group" -G "$supplementary_groups" \ - -d /var/empty -s "$(which nologin)" \ + -d /var/empty -s "$(command -v nologin)" \ -c "$comment" "$user" else useradd -g "$group" -G "$supplementary_groups" \ - -d /var/empty -s "$(which nologin)" \ + -d /var/empty -s "$(command -v nologin)" \ -c "$comment" --system "$user" _msg_pass "user added <$user>" fi