Created
July 27, 2017 11:39
-
-
Save patriksima/8b5a82c666a5992219f245d04a5e754f to your computer and use it in GitHub Desktop.
Ansible fwknop ssh connection plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
from ansible.plugins.connection.ssh import Connection as ConnectionSSH | |
from ansible.errors import AnsibleError | |
from socket import create_connection | |
from time import sleep | |
try: | |
from __main__ import display | |
except ImportError: | |
from ansible.utils.display import Display | |
display = Display() | |
class Connection(ConnectionSSH): | |
def __init__(self, *args, **kwargs): | |
super(Connection, self).__init__(*args, **kwargs) | |
display.vvv("ssh_fwknop connection plugin is used for this host", host=self.host) | |
def set_host_overrides(self, host, hostvars=None): | |
p = subprocess.Popen(['/usr/bin/fwknop', '-n', '%s' % (host)], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) | |
stdout, stderr = p.communicate() | |
status_code = p.wait() | |
if status_code != 0: | |
raise AnsibleError("fwknop error:\n%s" % stderr) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment