mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
7 years ago
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
DOCUMENTATION = """
|
||
|
author:
|
||
|
- John Doe
|
||
|
connection: dummy
|
||
|
short_description: defective connection plugin
|
||
|
description:
|
||
|
- defective connection plugin
|
||
|
version_added: "2.0"
|
||
|
options: {}
|
||
|
"""
|
||
|
import ansible.constants as C
|
||
|
from ansible.errors import AnsibleError
|
||
|
from ansible.plugins.connection import ConnectionBase
|
||
|
|
||
|
|
||
|
class Connection(ConnectionBase):
|
||
|
|
||
|
transport = 'dummy'
|
||
|
has_pipelining = True
|
||
|
become_methods = frozenset(C.BECOME_METHODS)
|
||
|
|
||
|
def __init__(self, play_context, new_stdin, *args, **kwargs):
|
||
|
super(Connection, self).__init__(play_context, new_stdin, *args, **kwargs)
|
||
|
|
||
|
raise AnsibleError('an error with {{ some Jinja }}')
|
||
|
|
||
|
def transport(self):
|
||
|
pass
|
||
|
|
||
|
def _connect(self):
|
||
|
pass
|
||
|
|
||
|
def exec_command(self, cmd, in_data=None, sudoable=True):
|
||
|
pass
|
||
|
|
||
|
def put_file(self, in_path, out_path):
|
||
|
pass
|
||
|
|
||
|
def fetch_file(self, in_path, out_path):
|
||
|
pass
|
||
|
|
||
|
def close(self):
|
||
|
pass
|