adjust nohome param when using luser

fixes #32199
pull/4420/head
Brian Coca 2017-10-27 12:16:21 -04:00 committed by Brian Coca
parent 95b31a3b61
commit bd321a0af6
1 changed files with 4 additions and 1 deletions

View File

@ -396,7 +396,10 @@ class User(object):
cmd.append(self.password)
if self.create_home:
cmd.append('-m')
if self.local:
cmd.append('-M')
else:
cmd.append('-m')
if self.skeleton is not None:
cmd.append('-k')