1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #2559 from mavimo/feature/documentation-vagrant

vagrant module documentation
This commit is contained in:
Michael DeHaan 2013-04-05 10:51:37 -07:00
commit 0440c48fe0

View file

@ -19,7 +19,7 @@ DOCUMENTATION = '''
module: vagrant module: vagrant
short_description: create a local instance via vagrant short_description: create a local instance via vagrant
description: description:
- creates VM instances via vagrant and optionally waits for it to be 'running'. This module has a dependency on python-vagrant. - creates VM instances via vagrant and optionally waits for it to be 'running'.
version_added: "1.1" version_added: "1.1"
options: options:
state: state:
@ -27,10 +27,11 @@ options:
- Should the VMs be "present" or "absent." - Should the VMs be "present" or "absent."
cmd: cmd:
description: description:
- vagrant subcommand to execute. Can be "up," "status," "config," "ssh," "halt," "destroy" or "clear." - vagrant subcommand to execute.
required: false required: false
default: null default: null
aliases: ['command'] aliases: ['command']
choices: [ "up", "status", "config", "ssh", "halt", "destroy", "clear" ]
box_name: box_name:
description: description:
- vagrant boxed image to start - vagrant boxed image to start
@ -68,7 +69,7 @@ options:
examples: examples:
- code: 'local_action: vagrant cmd=up box_name=lucid32 vm_name=webserver' - code: 'local_action: vagrant cmd=up box_name=lucid32 vm_name=webserver'
description: description:
requirements: [ "vagrant" ] requirements: [ "vagrant", "python-vagrant" ]
author: Rob Parrott author: Rob Parrott
''' '''