Reseting to original manually (limited connect).
Limited connectivity, but have extra time, so reseting this to original. This new feature will be implemented in separate branch.
This commit is contained in:
parent
6ae94df0a1
commit
4851197de2
1 changed files with 0 additions and 34 deletions
|
@ -2,7 +2,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# 2010-2013 Nico Schottelius (nico-cdist at schottelius.org)
|
# 2010-2013 Nico Schottelius (nico-cdist at schottelius.org)
|
||||||
# 2016 Darko Poljak (darko.poljak at gmail.com)
|
|
||||||
#
|
#
|
||||||
# This file is part of cdist.
|
# This file is part of cdist.
|
||||||
#
|
#
|
||||||
|
@ -21,34 +20,6 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
def inspect_ssh_mux_opts():
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
"""Inspect whether or not ssh supports multiplexing options"""
|
|
||||||
wanted_mux_opts = {
|
|
||||||
"ControlPath":"~/.ssh/master-%l-%r@%h:%p",
|
|
||||||
"ControlMaster":"auto",
|
|
||||||
"ControlPersist":"125",
|
|
||||||
}
|
|
||||||
# if checked key option is present then this assumes
|
|
||||||
# all options in value are present
|
|
||||||
check = {
|
|
||||||
"ControlMaster": ("ControlMaster", "ControlPath"),
|
|
||||||
"ControlPersist": ("ControlPersist",),
|
|
||||||
}
|
|
||||||
mux_opts = {}
|
|
||||||
for x in check:
|
|
||||||
try:
|
|
||||||
subprocess.check_output("ssh -o {}".format(x),
|
|
||||||
stderr=subprocess.STDOUT, shell=True)
|
|
||||||
except subprocess.CalledProcessError as e:
|
|
||||||
foo = e.output.decode().lower()
|
|
||||||
if not "bad configuration option" in foo:
|
|
||||||
for o in check[x]:
|
|
||||||
mux_opts[o] = wanted_mux_opts[o]
|
|
||||||
foo = [" -o {}={}".format(x, mux_opts[x]) for x in mux_opts]
|
|
||||||
return " ".join(foo)
|
|
||||||
|
|
||||||
def commandline():
|
def commandline():
|
||||||
"""Parse command line"""
|
"""Parse command line"""
|
||||||
import argparse
|
import argparse
|
||||||
|
@ -82,11 +53,6 @@ def commandline():
|
||||||
parser['banner'].set_defaults(func=cdist.banner.banner)
|
parser['banner'].set_defaults(func=cdist.banner.banner)
|
||||||
|
|
||||||
# Config
|
# Config
|
||||||
# inspect multiplexing options for default remote copy/exec scp/ssh
|
|
||||||
MUX_OPTS = inspect_ssh_mux_opts()
|
|
||||||
cdist.REMOTE_EXEC += MUX_OPTS
|
|
||||||
cdist.REMOTE_COPY += MUX_OPTS
|
|
||||||
|
|
||||||
parser['config'] = parser['sub'].add_parser('config',
|
parser['config'] = parser['sub'].add_parser('config',
|
||||||
parents=[parser['loglevel']])
|
parents=[parser['loglevel']])
|
||||||
parser['config'].add_argument('host', nargs='+',
|
parser['config'].add_argument('host', nargs='+',
|
||||||
|
|
Loading…
Reference in a new issue