fixes user module for rhel5 by using -n instead of -N, all other distros will still use -N
parent
2363074dd8
commit
a71ce0615a
|
@ -299,6 +299,14 @@ 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.
|
||||
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):
|
||||
|
|
Loading…
Reference in New Issue