mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
win_domain: added option to set database and sysvol path (#34333)
* win_domain: added param to set database and sysvol path * fixed up documentation to work with backslashes
This commit is contained in:
parent
dacd4c4a68
commit
38a31d3156
4 changed files with 48 additions and 5 deletions
|
@ -23,7 +23,7 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
'supported_by': 'core'}
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
DOCUMENTATION = r'''
|
||||
module: win_domain_controller
|
||||
short_description: Manage domain controller/member server state for a Windows host
|
||||
version_added: 2.3
|
||||
|
@ -54,6 +54,18 @@ options:
|
|||
choices:
|
||||
- domain_controller
|
||||
- member_server
|
||||
database_path:
|
||||
description:
|
||||
- The path to a directory on a fixed disk of the Windows host where the
|
||||
domain database will be created..
|
||||
- If not set then the default path is C(%SYSTEMROOT%\NTDS).
|
||||
version_added: '2.5'
|
||||
sysvol_path:
|
||||
description:
|
||||
- The path to a directory on a fixed disk of the Windows host where the
|
||||
Sysvol folder will be created.
|
||||
- If not set then the default path is C(%SYSTEMROOT%\SYSVOL).
|
||||
version_added: '2.5'
|
||||
author:
|
||||
- Matt Davis (@nitzmahone)
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue