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
fa17540a
Commit
fa17540a
authored
Nov 09, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1570 from skvidal/addhost
Addhost module
parents
5989a1c1
70d61fe7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
94 additions
and
0 deletions
+94
-0
lib/ansible/runner/action_plugins/add_host.py
+70
-0
library/add_host
+24
-0
No files found.
lib/ansible/runner/action_plugins/add_host.py
0 → 100644
View file @
fa17540a
# Copyright 2012, Seth Vidal <skvidal@fedoraproject.org>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
import
ansible
from
ansible.callbacks
import
vv
from
ansible.errors
import
AnsibleError
as
ae
from
ansible.runner.return_data
import
ReturnData
from
ansible.utils
import
parse_kv
,
template
from
ansible.inventory.host
import
Host
from
ansible.inventory.group
import
Group
class
ActionModule
(
object
):
''' Create inventory hosts and groups in the memory inventory'''
### We need to be able to modify the inventory
BYPASS_HOST_LOOP
=
True
def
__init__
(
self
,
runner
):
self
.
runner
=
runner
def
run
(
self
,
conn
,
tmp
,
module_name
,
module_args
,
inject
):
args
=
parse_kv
(
module_args
)
if
not
'hostname'
in
args
:
raise
ae
(
"'hostname' is a required argument."
)
vv
(
"created 'add_host' ActionModule: hostname=
%
s"
%
(
args
[
'hostname'
]))
result
=
{
'changed'
:
True
}
new_host
=
Host
(
args
[
'hostname'
])
inventory
=
self
.
runner
.
inventory
# add the new host to the 'all' group
allgroup
=
inventory
.
get_group
(
'all'
)
allgroup
.
add_host
(
new_host
)
result
[
'changed'
]
=
True
# add it to the group if that was specified
if
'groupname'
in
args
:
if
not
inventory
.
get_group
(
args
[
'groupname'
]):
new_group
=
Group
(
args
[
'groupname'
])
inventory
.
add_group
(
new_group
)
ngobj
=
inventory
.
get_group
(
args
[
'groupname'
])
ngobj
.
add_host
(
new_host
)
vv
(
"created 'add_host' ActionModule: groupname=
%
s"
%
(
args
[
'groupname'
]))
result
[
'new_group'
]
=
args
[
'groupname'
]
result
[
'new_host'
]
=
args
[
'hostname'
]
return
ReturnData
(
conn
=
conn
,
comm_ok
=
True
,
result
=
result
)
library/add_host
0 → 100644
View file @
fa17540a
# -*- mode: python -*-
DOCUMENTATION
=
'''
---
module: add_host
short_description: add a host (and alternatively a group) to the ansible-playbook in-memory inventory
description:
- Use variables to create new hosts and groups in inventory for use in later plays of the same playbook
version_added: 0.9
options:
hostname:
description:
- The hostname/ip of the host to add to the inventory
required: true
groupname:
description:
- The groupname to add the hostname to.
required: false
author: Seth Vidal
examples:
- description: add host to group 'just_created'
code: add_host hostname=${ip_from_ec2create} groupname=just_created
'''
\ No newline at end of file
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