mirror of https://github.com/ansible/ansible.git
Removing test script for ansible-connection
parent
7e2305f953
commit
85064807af
@ -1,27 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import cPickle
|
||||
import sys
|
||||
from cStringIO import StringIO
|
||||
from ansible.playbook.play_context import PlayContext
|
||||
|
||||
p = PlayContext()
|
||||
p.connection = 'paramiko_ssh'
|
||||
p.remote_addr = '192.168.122.100'
|
||||
p.port = 22
|
||||
p.remote_user = 'root'
|
||||
p.password = ''
|
||||
|
||||
src = StringIO()
|
||||
cPickle.dump(p.serialize(), src)
|
||||
sys.stdout.write(src.getvalue())
|
||||
sys.stdout.write('\n#END_INIT#\n')
|
||||
sys.stdout.flush()
|
||||
|
||||
while True:
|
||||
data = sys.stdin.readline()
|
||||
if data == '':
|
||||
break
|
||||
if data.strip() != '':
|
||||
sys.stdout.write(data)
|
||||
sys.stdout.flush()
|
Loading…
Reference in New Issue