1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

etc: guix-install.sh: Remove dependency on "which".

* etc/guix-install.sh: Remove dependency on "which".

Change-Id: I2f93ade98f92ab28b4657fa213b9164a148437e6
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Ivan Popovych
2025-06-19 21:53:07 +03:00
committed by jgart
parent 5b307267d6
commit e28156c212

View File

@@ -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