Set default shell to /bin/sh for ldap users
Change the default shell of ldap users to /bin/sh to make it consistent
with local users.
Tested:
* `getent.ldap passwd` shows the default shell is /bin/sh
Change-Id: I3f8071172e20be54c46df2717e005c25f9da19a1
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@intel.com>
diff --git a/phosphor-ldap-config/ldap_config.cpp b/phosphor-ldap-config/ldap_config.cpp
index 8f2e303..c36820d 100644
--- a/phosphor-ldap-config/ldap_config.cpp
+++ b/phosphor-ldap-config/ldap_config.cpp
@@ -271,7 +271,7 @@
<< ConfigIface::groupNameAttribute() << "\n";
confData << "map passwd homeDirectory \"/home/$sAMAccountName\"\n";
confData << "map passwd gecos displayName\n";
- confData << "map passwd loginShell \"/bin/bash\"\n";
+ confData << "map passwd loginShell \"/bin/sh\"\n";
confData << "map group gidNumber "
"objectSid:S-1-5-21-3623811015-3361044348-30300820\n";
confData << "map group cn "
@@ -295,6 +295,7 @@
<< ConfigIface::userNameAttribute() << "\n";
confData << "map passwd gidNumber "
<< ConfigIface::groupNameAttribute() << "\n";
+ confData << "map passwd loginShell \"/bin/sh\"\n";
confData << "nss_initgroups_ignoreusers ALLLOCAL\n";
}
try