fixes user module for rhel5 by using -n instead of -N, all other distros will still use -N

This commit is contained in:
Jonathan Mainguy 2014-11-17 10:31:54 -05:00
parent 2c1538f220
commit 8b8008569f

View file

@ -299,7 +299,15 @@ class User(object):
# exists with the same name as the user to prevent
# errors from useradd trying to create a group when
# USERGROUPS_ENAB is set in /etc/login.defs.
cmd.append('-N')
if os.path.exists('/etc/redhat-release'):
dist = platform.dist()
major_release = int(dist[1].split('.')[0])
if major_release <= 5:
cmd.append('-n')
else:
cmd.append('-N')
else:
cmd.append('-N')
if self.groups is not None and len(self.groups):
groups = self.get_groups_set()