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
b3ff88d0
Commit
b3ff88d0
authored
Mar 11, 2014
by
James Tanner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix version_added and snippet imports on new digital ocean modules
parent
748588b5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
library/cloud/digital_ocean_domain
+3
-3
library/cloud/digital_ocean_droplet
+3
-3
library/cloud/digital_ocean_sshkey
+3
-3
No files found.
library/cloud/digital_ocean_domain
View file @
b3ff88d0
...
...
@@ -21,7 +21,7 @@ module: digital_ocean_domain
short_description: Create/delete a DNS record in DigitalOcean
description:
- Create/delete a DNS record in DigitalOcean.
version_added: "1.
4
"
version_added: "1.
6
"
options:
state:
description:
...
...
@@ -236,7 +236,7 @@ def main():
except
(
DoError
,
Exception
)
as
e
:
module
.
fail_json
(
msg
=
str
(
e
))
#
this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
#
import module snippets
from
ansible.module_utils.basic
import
*
main
()
library/cloud/digital_ocean_droplet
View file @
b3ff88d0
...
...
@@ -21,7 +21,7 @@ module: digital_ocean_droplet
short_description: Create/delete a droplet in DigitalOcean
description:
- Create/delete a droplet in DigitalOcean and optionally waits for it to be 'running'.
version_added: "1.
4
"
version_added: "1.
6
"
options:
state:
description:
...
...
@@ -314,7 +314,7 @@ def main():
except
(
DoError
,
Exception
)
as
e
:
module
.
fail_json
(
msg
=
str
(
e
))
#
this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
#
import module snippets
from
ansible.module_utils.basic
import
*
main
()
library/cloud/digital_ocean_sshkey
View file @
b3ff88d0
...
...
@@ -21,7 +21,7 @@ module: digital_ocean_sshkey
short_description: Create/delete an SSH key in DigitalOcean
description:
- Create/delete an SSH key.
version_added: "1.
4
"
version_added: "1.
6
"
options:
state:
description:
...
...
@@ -172,7 +172,7 @@ def main():
except
(
DoError
,
Exception
)
as
e
:
module
.
fail_json
(
msg
=
str
(
e
))
#
this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
#
import module snippets
from
ansible.module_utils.basic
import
*
main
()
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