diff options
author | brapru <brapru@pm.me> | 2021-05-29 08:18:11 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-30 17:42:03 +0100 |
commit | 15607754942b3c6866558ac9c01033b77c55c271 (patch) | |
tree | 339ab6d2752ba9fcb95e4e29f009c66ae01eaac9 /Userland/Utilities | |
parent | e68780e1ad8f928ae14d57674dc6747db38c1e9c (diff) | |
download | serenity-15607754942b3c6866558ac9c01033b77c55c271.zip |
Utilities: Change default shell of useradd to /bin/sh
Diffstat (limited to 'Userland/Utilities')
-rw-r--r-- | Userland/Utilities/useradd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |