Commit 98f84382 by James Cammarata

Updating the other classes in the group module to match #7249

parent bdd9b4ca
......@@ -206,7 +206,7 @@ class AIX(Group):
if len(cmd) == 1:
return (None, '', '')
if self.module.check_mode:
return (True, '', '')
return (0, '', '')
cmd.append(self.name)
return self.execute_command(cmd)
......@@ -245,7 +245,7 @@ class FreeBsdGroup(Group):
# modify the group if cmd will do anything
if cmd_len != len(cmd):
if self.module.check_mode:
return (True, '', '')
return (0, '', '')
return self.execute_command(cmd)
return (None, '', '')
......@@ -287,7 +287,7 @@ class OpenBsdGroup(Group):
if len(cmd) == 1:
return (None, '', '')
if self.module.check_mode:
return (True, '', '')
return (0, '', '')
cmd.append(self.name)
return self.execute_command(cmd)
......@@ -329,7 +329,7 @@ class NetBsdGroup(Group):
if len(cmd) == 1:
return (None, '', '')
if self.module.check_mode:
return (True, '', '')
return (0, '', '')
cmd.append(self.name)
return self.execute_command(cmd)
......
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