Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
0440c48f
Commit
0440c48f
authored
Apr 05, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2559 from mavimo/feature/documentation-vagrant
vagrant module documentation
parents
f7a53d24
a8f966cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
library/vagrant
+8
-7
No files found.
library/vagrant
View file @
0440c48f
...
...
@@ -19,7 +19,7 @@ DOCUMENTATION = '''
module: vagrant
short_description: create a local instance via vagrant
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"
options:
state:
...
...
@@ -27,10 +27,11 @@ options:
- Should the VMs be "present" or "absent."
cmd:
description:
- vagrant subcommand to execute.
Can be "up," "status," "config," "ssh," "halt," "destroy" or "clear."
- vagrant subcommand to execute.
required: false
default: null
aliases: ['command']
aliases: ['command']
choices: [ "up", "status", "config", "ssh", "halt", "destroy", "clear" ]
box_name:
description:
- vagrant boxed image to start
...
...
@@ -62,13 +63,13 @@ options:
aliases: []
memory:
description:
- memory in MB
- memory in MB
required: False
examples:
- code: 'local_action: vagrant cmd=up box_name=lucid32 vm_name=webserver'
description:
requirements: [ "vagrant" ]
description:
requirements: [ "vagrant"
, "python-vagrant"
]
author: Rob Parrott
'''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment