mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Remove choices=BOOLEANS as it is no longer needed
This commit is contained in:
10
library/user
10
library/user
@@ -1002,13 +1002,13 @@ def main():
|
||||
shell=dict(default=None),
|
||||
password=dict(default=None),
|
||||
# following options are specific to userdel
|
||||
force=dict(default='no', choices=BOOLEANS, type='bool'),
|
||||
remove=dict(default='no', choices=BOOLEANS, type='bool'),
|
||||
force=dict(default='no', type='bool'),
|
||||
remove=dict(default='no', type='bool'),
|
||||
# following options are specific to useradd
|
||||
createhome=dict(default='yes', choices=BOOLEANS, type='bool'),
|
||||
system=dict(default='no', choices=BOOLEANS, type='bool'),
|
||||
createhome=dict(default='yes', type='bool'),
|
||||
system=dict(default='no', type='bool'),
|
||||
# following options are specific to usermod
|
||||
append=dict(default='no', choices=BOOLEANS, type='bool'),
|
||||
append=dict(default='no', type='bool'),
|
||||
# following are specific to ssh key generation
|
||||
generate_ssh_key=dict(choices=BOOLEANS, type='bool'),
|
||||
ssh_key_bits=dict(default=ssh_defaults['bits']),
|
||||
|
||||
Reference in New Issue
Block a user