Skip to content

Commit

Permalink
FreeBSD user mod only fires when there are changes
Browse files Browse the repository at this point in the history
Also fix missing -G on groups change
  • Loading branch information
nigelm committed Nov 4, 2012
1 parent 1ab1c8d commit f905e75
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions library/user
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,7 @@ class FreeBsdUser(User):
'usermod',
'-n',
self.name ]
cmd_len = len(cmd)
info = self.user_info()

if self.uid is not None and info[2] != int(self.uid):
Expand Down Expand Up @@ -614,15 +615,19 @@ class FreeBsdUser(User):
groups_need_mod = True

if groups_need_mod:
cmd.append('-G')
new_groups = groups
if self.append:
new_groups.append(current_groups)
cmd.append(','.join(new_groups))

# modify the user
(rc, out, err) = self.execute_command(cmd)
if rc is not None and rc != 0:
module.fail_json(name=self.name, msg=err, rc=rc)
# modify the user if cmd will do anything
if cmd_len != len(cmd):
(rc, out, err) = self.execute_command(cmd)
if rc is not None and rc != 0:
module.fail_json(name=self.name, msg=err, rc=rc)
else:
(rc, out, err) = (None, '', '')

# we have to set the password in a second command
if self.password is not None and info[1] != self.password:
Expand Down

0 comments on commit f905e75

Please sign in to comment.