Skip to content

Instantly share code, notes, and snippets.

@patriksima
Created July 27, 2017 11:39
Show Gist options
  • Save patriksima/8b5a82c666a5992219f245d04a5e754f to your computer and use it in GitHub Desktop.
Save patriksima/8b5a82c666a5992219f245d04a5e754f to your computer and use it in GitHub Desktop.
Ansible fwknop ssh connection plugin
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