summaryrefslogtreecommitdiff
path: root/windows/win_group.py
diff options
context:
space:
mode:
authorSam Doran <sdoran@ansible.com>2016-11-22 11:07:21 -0500
committerJohn R Barker <john@johnrbarker.com>2016-11-22 16:07:21 +0000
commit99de7f02cd10dab087842246d6c038720942337e (patch)
tree0b26196e50e3c4b65621acfcb159cb1a6ece549f /windows/win_group.py
parentbb901bbfcc8edaa9a2da3a17d661658845e18762 (diff)
downloadansible-modules-core-99de7f02cd10dab087842246d6c038720942337e.tar.gz
Examples syntax batch7 (#5624)
* Change example syntax on nxos_feature module * Change example syntax on nxos_hsrp module * Change example syntax on nxos_igmp module * Change example syntax on nxos_interface module * Change example syntax on nxos_interface_ospf module * Change example syntax on nxos_ip_interface module * Change example syntax on nxos_ping module * Change example syntax on nxos_switchport module * Change example syntax on nxos_vlan module * Change example syntax on nxos_vrf module * Change example syntax on nxos_vrf_interface module * Change example syntax on nxos_vrrp module * Change example syntax on meta module * Change example syntax on set_fact module * Change example syntax on win_copy module * Change example syntax on win_file module * Change example syntax on win_get_url module Remove escaping of \ characeter in Windows paths since it's no longer required for single quoted or unquoted values when using multi-line YAML syntax. * Change example syntax on win_lineinfile module * Change example syntax on win_msi module * Change example syntax on win_stat module * Remove nxos_bgp example from nxos_igmp module * Mark examples as regexp to avoid syntax error * Cleanup win_copy.py examples * Cleanup win_file.py examples * Remove quotes in win_get_url.py examples * Cleanup quotes and languare in win_lineinfile.py * Cleanup examples in win_group.py * Cleanup examples in win_service.py * Don't use : in documentation because it breaks the YAML syntax check * Cleanup win_copy.py examples * Cleanup win_copy.py examples * Minor change to fix test failure * Use single quotes
Diffstat (limited to 'windows/win_group.py')
-rw-r--r--windows/win_group.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/win_group.py b/windows/win_group.py
index 5e8b0ada..409065cb 100644
--- a/windows/win_group.py
+++ b/windows/win_group.py
@@ -54,13 +54,13 @@ author: "Chris Hoffman (@chrishoffman)"
'''
EXAMPLES = '''
- # Create a new group
+- name: Create a new group
win_group:
name: deploy
description: Deploy Group
state: present
- # Remove a group
+- name: Remove a group
win_group:
name: deploy
state: absent