mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -07:00
Windows: Clean up documentation (#36684)
This PR includes: - Further cleanup of BOTMETA.yml - Cleanup of author github handles - Use of proper booleans - One-line license statement - Copyright format statement - Smaller cleanups
This commit is contained in:
parent
4ab96722cf
commit
07e8fb5dbb
81 changed files with 751 additions and 1591 deletions
|
@ -1,17 +1,14 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# This file is part of Ansible
|
||||
|
||||
# (c) 2017, Red Hat, Inc.
|
||||
# Copyright (c) 2017 Ansible Project
|
||||
# Copyright: (c) 2017, Red Hat, Inc.
|
||||
# Copyright: (c) 2017, Ansible Project
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'core'}
|
||||
|
||||
|
||||
DOCUMENTATION = r'''
|
||||
module: win_domain_controller
|
||||
short_description: Manage domain controller/member server state for a Windows host
|
||||
|
@ -89,7 +86,7 @@ EXAMPLES = r'''
|
|||
domain_admin_password: password123!
|
||||
safe_mode_password: password123!
|
||||
state: domain_controller
|
||||
log_path: c:\ansible_win_domain_controller.txt
|
||||
log_path: C:\ansible_win_domain_controller.txt
|
||||
|
||||
# ensure a server is not a domain controller
|
||||
# note that without an action wrapper, in the case where a DC is demoted,
|
||||
|
@ -102,7 +99,7 @@ EXAMPLES = r'''
|
|||
domain_admin_password: password123!
|
||||
local_admin_password: password123!
|
||||
state: member_server
|
||||
log_path: c:\ansible_win_domain_controller.txt
|
||||
log_path: C:\ansible_win_domain_controller.txt
|
||||
|
||||
- name: promote server as a read only domain controller
|
||||
win_domain_controller:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue