Commit 7d97b2e6 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

'slapsoft' user and 'slapuser*' users are internal users and not login users.

parent 85d05801
......@@ -402,7 +402,7 @@ class User:
except KeyError:
callAndRead(['groupadd', self.name])
user_parameter_list = ['-d', self.path, '-g', self.name]
user_parameter_list = ['-d', self.path, '-g', self.name, '-s', '/bin/false']
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