From 15607754942b3c6866558ac9c01033b77c55c271 Mon Sep 17 00:00:00 2001 From: brapru Date: Sat, 29 May 2021 08:18:11 -0400 Subject: [PATCH] Utilities: Change default shell of useradd to /bin/sh --- Userland/Utilities/useradd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Utilities/useradd.cpp b/Userland/Utilities/useradd.cpp index 009a3b2469..0a11bbf68e 100644 --- a/Userland/Utilities/useradd.cpp +++ b/Userland/Utilities/useradd.cpp @@ -17,7 +17,7 @@ constexpr uid_t BASE_UID = 1000; constexpr gid_t USERS_GID = 100; -constexpr const char* DEFAULT_SHELL = "/bin/Shell"; +constexpr const char* DEFAULT_SHELL = "/bin/sh"; int main(int argc, char** argv) {