mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Changes to NetBSD groupadd/useradd
* Add NetBSD to groupadd/useradd * Add NetBSD exclusion to shadow * Skip useradd system flag for NetBSD
This commit is contained in:
parent
43c731a75a
commit
fd06ef830d
@ -13,7 +13,10 @@ def __virtual__():
|
||||
'''
|
||||
Set the user module if the kernel is Linux or OpenBSD
|
||||
'''
|
||||
return 'group' if __grains__['kernel'] in ('Linux', 'OpenBSD') else False
|
||||
return (
|
||||
'group' if __grains__['kernel'] in ('Linux', 'OpenBSD', 'NetBSD')
|
||||
else False
|
||||
)
|
||||
|
||||
|
||||
def add(name, gid=None, system=False):
|
||||
|
@ -19,7 +19,9 @@ def __virtual__():
|
||||
'''
|
||||
|
||||
# Disable on Windows, a specific file module exists:
|
||||
if salt.utils.is_windows() or __grains__['kernel'] == 'SunOS':
|
||||
if salt.utils.is_windows() or __grains__['kernel'] in (
|
||||
'SunOS', 'NetBSD'
|
||||
):
|
||||
return False
|
||||
return 'shadow'
|
||||
|
||||
|
@ -34,7 +34,8 @@ def __virtual__():
|
||||
'list_groups', 'list_users', '__virtual__'):
|
||||
delattr(mod, attr)
|
||||
return (
|
||||
'user' if __grains__['kernel'] in ('Linux', 'Darwin', 'OpenBSD')
|
||||
'user' if __grains__['kernel'] in ('Linux', 'Darwin', 'OpenBSD',
|
||||
'NetBSD')
|
||||
else False
|
||||
)
|
||||
|
||||
@ -120,7 +121,8 @@ def add(name,
|
||||
if not unique:
|
||||
cmd += '-o '
|
||||
if system:
|
||||
cmd += '-r '
|
||||
if not __grains__['kernel'] == 'NetBSD':
|
||||
cmd += '-r '
|
||||
cmd += name
|
||||
ret = __salt__['cmd.run_all'](cmd)['retcode']
|
||||
if ret != 0:
|
||||
|
@ -49,7 +49,7 @@ def _changes(name,
|
||||
otherwise return False.
|
||||
'''
|
||||
|
||||
if __grains__['os'] not in ('FreeBSD', 'OpenBSD'):
|
||||
if __grains__['os'] not in ('FreeBSD', 'OpenBSD', 'NetBSD'):
|
||||
lshad = __salt__['shadow.info'](name)
|
||||
|
||||
lusr = __salt__['user.info'](name)
|
||||
@ -96,7 +96,7 @@ def _changes(name,
|
||||
if lusr['shell'] != shell:
|
||||
change['shell'] = shell
|
||||
if password:
|
||||
if __grains__['os'] not in ('FreeBSD', 'OpenBSD'):
|
||||
if __grains__['os'] not in ('FreeBSD', 'OpenBSD', 'NetBSD'):
|
||||
if lshad['pwd'] == '!' or \
|
||||
lshad['pwd'] != '!' and enforce_password:
|
||||
if lshad['pwd'] != password:
|
||||
@ -263,7 +263,7 @@ def present(name,
|
||||
ret['comment'] += '{0}: {1}\n'.format(key, val)
|
||||
return ret
|
||||
# The user is present
|
||||
if not __grains__['os'] in ('FreeBSD', 'OpenBSD'):
|
||||
if not __grains__['os'] in ('FreeBSD', 'OpenBSD', 'NetBSD'):
|
||||
lshad = __salt__['shadow.info'](name)
|
||||
pre = __salt__['user.info'](name)
|
||||
for key, val in changes.items():
|
||||
@ -282,14 +282,14 @@ def present(name,
|
||||
|
||||
post = __salt__['user.info'](name)
|
||||
spost = {}
|
||||
if __grains__['os'] not in ('FreeBSD', 'OpenBSD'):
|
||||
if __grains__['os'] not in ('FreeBSD', 'OpenBSD', 'NetBSD'):
|
||||
if lshad['pwd'] != password:
|
||||
spost = __salt__['shadow.info'](name)
|
||||
# See if anything changed
|
||||
for key in post:
|
||||
if post[key] != pre[key]:
|
||||
ret['changes'][key] = post[key]
|
||||
if __grains__['os'] not in ('FreeBSD', 'OpenBSD'):
|
||||
if __grains__['os'] not in ('FreeBSD', 'OpenBSD', 'NetBSD'):
|
||||
for key in spost:
|
||||
if lshad[key] != spost[key]:
|
||||
ret['changes'][key] = spost[key]
|
||||
|
Loading…
Reference in New Issue
Block a user