Specifying default shell is no-op.

BUT it prevents easy debugging, because it is reset
each time by slapformat.
parent 76a3ee5b
......@@ -552,8 +552,7 @@ class User(object):
except KeyError:
callAndRead(['groupadd', grpname])
user_parameter_list = ['-d', self.path, '-g', self.name, '-s',
'/bin/false']
user_parameter_list = ['-d', self.path, '-g', self.name]
if self.additional_group_list is not None:
user_parameter_list.extend(['-G', ','.join(self.additional_group_list)])
user_parameter_list.append(self.name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment