mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 01:44:03 -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,15 +1,13 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# This file is part of Ansible
|
||||
|
||||
# Copyright (c) 2017 Ansible Project
|
||||
# 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': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: win_scheduled_task
|
||||
|
@ -26,8 +24,9 @@ notes:
|
|||
options:
|
||||
# module definition options
|
||||
name:
|
||||
description: The name of the scheduled task without the path.
|
||||
required: true
|
||||
description:
|
||||
- The name of the scheduled task without the path.
|
||||
required: yes
|
||||
path:
|
||||
description:
|
||||
- Task folder in which this task will be stored.
|
||||
|
@ -58,7 +57,7 @@ options:
|
|||
path:
|
||||
description:
|
||||
- The path to the executable for the ExecAction.
|
||||
required: true
|
||||
required: yes
|
||||
arguments:
|
||||
description:
|
||||
- An argument string to supply for the executable.
|
||||
|
@ -96,7 +95,7 @@ options:
|
|||
description:
|
||||
- The trigger type, this value controls what below options are
|
||||
required.
|
||||
required: true
|
||||
required: yes
|
||||
choices: [ boot, daily, event, idle, logon, monthlydow, monthly, registration, time, weekly, session_state_change ]
|
||||
enabled:
|
||||
description:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue