Native YAML - system (#3625)

* Native YAML - system

* Remove comment that is not applicable to the code
This commit is contained in:
Fabio Alessandro Locati 2016-12-02 15:48:22 +00:00 committed by Matt Clay
commit cc25f24475
26 changed files with 514 additions and 135 deletions

View file

@ -52,9 +52,15 @@ options:
EXAMPLES = '''
# Add the 802.1q module
- modprobe: name=8021q state=present
- modprobe:
name: 8021q
state: present
# Add the dummy module
- modprobe: name=dummy state=present params="numdummies=2"
- modprobe:
name: dummy
state: present
params: 'numdummies=2'
'''
from ansible.module_utils.basic import *