Merge branch 'usermod_fix' of https://github.com/tknguyen79/ansible into tknguyen79-usermod_fix
Conflicts: library/system/user
This commit is contained in:
commit
8aec47af89
1 changed files with 2 additions and 2 deletions
|
@ -398,10 +398,10 @@ class User(object):
|
|||
cmd.append(self.comment)
|
||||
|
||||
if self.home is not None and info[5] != self.home:
|
||||
if self.move_home:
|
||||
cmd.append('-m')
|
||||
cmd.append('-d')
|
||||
cmd.append(self.home)
|
||||
if self.move_home:
|
||||
cmd.append('-m')
|
||||
|
||||
if self.shell is not None and info[6] != self.shell:
|
||||
cmd.append('-s')
|
||||
|
|
Loading…
Reference in a new issue