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
a272a8cc
Commit
a272a8cc
authored
May 30, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split connection code into submodules.
parent
80852f86
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
133 additions
and
77 deletions
+133
-77
lib/ansible/runner/connection/__init__.py
+51
-0
lib/ansible/runner/connection/local.py
+81
-0
lib/ansible/runner/connection/paramiko_ssh.py
+0
-77
setup.py
+1
-0
No files found.
lib/ansible/runner/connection/__init__.py
0 → 100644
View file @
a272a8cc
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
#
# 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
warnings
import
traceback
import
os
import
time
import
re
import
shutil
import
subprocess
import
pipes
import
socket
import
random
from
ansible.runner.connection
import
local
from
ansible.runner.connection
import
paramiko_ssh
class
Connection
(
object
):
''' Handles abstract connections to remote hosts '''
def
__init__
(
self
,
runner
,
transport
,
sudo_user
):
self
.
runner
=
runner
self
.
transport
=
transport
self
.
sudo_user
=
sudo_user
def
connect
(
self
,
host
,
port
=
None
):
conn
=
None
if
self
.
transport
==
'local'
:
conn
=
local
.
LocalConnection
(
self
.
runner
,
host
)
elif
self
.
transport
==
'paramiko'
:
conn
=
paramiko_ssh
.
ParamikoConnection
(
self
.
runner
,
host
,
port
)
if
conn
is
None
:
raise
Exception
(
"unsupported connection type"
)
return
conn
.
connect
()
lib/ansible/runner/connection/local.py
0 → 100644
View file @
a272a8cc
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
#
# 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
warnings
import
traceback
import
os
import
time
import
re
import
shutil
import
subprocess
import
pipes
import
socket
import
random
from
ansible
import
errors
class
LocalConnection
(
object
):
''' Local based connections '''
def
__init__
(
self
,
runner
,
host
):
self
.
runner
=
runner
self
.
host
=
host
def
connect
(
self
,
port
=
None
):
''' connect to the local host; nothing to do here '''
return
self
def
exec_command
(
self
,
cmd
,
tmp_path
,
sudo_user
,
sudoable
=
False
):
''' run a command on the local host '''
if
self
.
runner
.
sudo
and
sudoable
:
cmd
=
"sudo -s
%
s"
%
cmd
if
self
.
runner
.
sudo_pass
:
# NOTE: if someone wants to add sudo w/ password to the local connection type, they are welcome
# to do so. The primary usage of the local connection is for crontab and kickstart usage however
# so this doesn't seem to be a huge priority
raise
errors
.
AnsibleError
(
"sudo with password is presently only supported on the paramiko (SSH) connection type"
)
p
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdin
=
None
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
stdout
,
stderr
=
p
.
communicate
()
return
(
""
,
stdout
,
stderr
)
def
put_file
(
self
,
in_path
,
out_path
):
''' transfer a file from local to local '''
if
not
os
.
path
.
exists
(
in_path
):
raise
errors
.
AnsibleFileNotFound
(
"file or module does not exist:
%
s"
%
in_path
)
try
:
shutil
.
copyfile
(
in_path
,
out_path
)
except
shutil
.
Error
:
traceback
.
print_exc
()
raise
errors
.
AnsibleError
(
"failed to copy:
%
s and
%
s are the same"
%
(
in_path
,
out_path
))
except
IOError
:
traceback
.
print_exc
()
raise
errors
.
AnsibleError
(
"failed to transfer file to
%
s"
%
out_path
)
def
fetch_file
(
self
,
in_path
,
out_path
):
''' fetch a file from local to local -- for copatibility '''
self
.
put_file
(
in_path
,
out_path
)
def
close
(
self
):
''' terminate the connection; nothing to do here '''
pass
lib/ansible/runner/connection.py
→
lib/ansible/runner/connection
/paramiko_ssh
.py
View file @
a272a8cc
...
...
@@ -36,32 +36,6 @@ with warnings.catch_warnings():
warnings
.
simplefilter
(
"ignore"
)
import
paramiko
################################################
class
Connection
(
object
):
''' Handles abstract connections to remote hosts '''
def
__init__
(
self
,
runner
,
transport
,
sudo_user
):
self
.
runner
=
runner
self
.
transport
=
transport
self
.
sudo_user
=
sudo_user
def
connect
(
self
,
host
,
port
=
None
):
conn
=
None
if
self
.
transport
==
'local'
:
conn
=
LocalConnection
(
self
.
runner
,
host
)
elif
self
.
transport
==
'paramiko'
:
conn
=
ParamikoConnection
(
self
.
runner
,
host
,
port
)
if
conn
is
None
:
raise
Exception
(
"unsupported connection type"
)
return
conn
.
connect
()
################################################
# want to implement another connection type?
# follow duck-typing of ParamikoConnection
# you may wish to read config files in __init__
# if you have any. Paramiko does not need any.
class
ParamikoConnection
(
object
):
''' SSH based connections with Paramiko '''
...
...
@@ -171,54 +145,3 @@ class ParamikoConnection(object):
self
.
ssh
.
close
()
############################################
# add other connection types here
class
LocalConnection
(
object
):
''' Local based connections '''
def
__init__
(
self
,
runner
,
host
):
self
.
runner
=
runner
self
.
host
=
host
def
connect
(
self
,
port
=
None
):
''' connect to the local host; nothing to do here '''
return
self
def
exec_command
(
self
,
cmd
,
tmp_path
,
sudo_user
,
sudoable
=
False
):
''' run a command on the local host '''
if
self
.
runner
.
sudo
and
sudoable
:
cmd
=
"sudo -s
%
s"
%
cmd
if
self
.
runner
.
sudo_pass
:
# NOTE: if someone wants to add sudo w/ password to the local connection type, they are welcome
# to do so. The primary usage of the local connection is for crontab and kickstart usage however
# so this doesn't seem to be a huge priority
raise
errors
.
AnsibleError
(
"sudo with password is presently only supported on the paramiko (SSH) connection type"
)
p
=
subprocess
.
Popen
(
cmd
,
shell
=
True
,
stdin
=
None
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
stdout
,
stderr
=
p
.
communicate
()
return
(
""
,
stdout
,
stderr
)
def
put_file
(
self
,
in_path
,
out_path
):
''' transfer a file from local to local '''
if
not
os
.
path
.
exists
(
in_path
):
raise
errors
.
AnsibleFileNotFound
(
"file or module does not exist:
%
s"
%
in_path
)
try
:
shutil
.
copyfile
(
in_path
,
out_path
)
except
shutil
.
Error
:
traceback
.
print_exc
()
raise
errors
.
AnsibleError
(
"failed to copy:
%
s and
%
s are the same"
%
(
in_path
,
out_path
))
except
IOError
:
traceback
.
print_exc
()
raise
errors
.
AnsibleError
(
"failed to transfer file to
%
s"
%
out_path
)
def
fetch_file
(
self
,
in_path
,
out_path
):
''' fetch a file from local to local -- for copatibility '''
self
.
put_file
(
in_path
,
out_path
)
def
close
(
self
):
''' terminate the connection; nothing to do here '''
pass
setup.py
View file @
a272a8cc
...
...
@@ -25,6 +25,7 @@ setup(name='ansible',
'ansible.inventory'
,
'ansible.playbook'
,
'ansible.runner'
,
'ansible.runner.connection'
,
],
scripts
=
[
'bin/ansible'
,
...
...
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