mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-27 00:46:34 +00:00
changes to cifs_server
This commit is contained in:
committed by
John R Barker
parent
0ab5b765ec
commit
cc618b00a5
@@ -24,7 +24,7 @@ version_added: '2.6'
|
||||
author: NetApp Ansible Team (@carchi8py) <ng-ansibleteam@netapp.com>
|
||||
|
||||
description:
|
||||
- Creating / deleting and modifying the CIFS server.
|
||||
- Creating / deleting and modifying the CIFS server .
|
||||
|
||||
options:
|
||||
|
||||
@@ -39,10 +39,11 @@ options:
|
||||
- CIFS Server Administrative Status.
|
||||
choices: ['stopped', 'started']
|
||||
|
||||
cifs_server_name:
|
||||
name:
|
||||
description:
|
||||
- Specifies the cifs_server name.
|
||||
required: true
|
||||
aliases: ['cifs_server_name']
|
||||
|
||||
admin_user_name:
|
||||
description:
|
||||
@@ -123,7 +124,7 @@ class NetAppOntapcifsServer(object):
|
||||
self.argument_spec.update(dict(
|
||||
state=dict(required=False, choices=['present', 'absent'], default='present'),
|
||||
service_state=dict(required=False, choices=['stopped', 'started']),
|
||||
cifs_server_name=dict(required=False, type='str'),
|
||||
name=dict(required=True, type='str', aliases=['cifs_server_name']),
|
||||
workgroup=dict(required=False, type='str', default=None),
|
||||
domain=dict(required=False, type='str'),
|
||||
admin_user_name=dict(required=False, type='str'),
|
||||
|
||||
Reference in New Issue
Block a user