Update changelog.
This commit is contained in:
commit
e66bedb43f
8 changed files with 172 additions and 15 deletions
|
@ -41,8 +41,8 @@ BANNER = """
|
||||||
"P' "" ""
|
"P' "" ""
|
||||||
"""
|
"""
|
||||||
|
|
||||||
REMOTE_COPY = "scp -o User=root -q"
|
REMOTE_COPY = "scp -o User=root"
|
||||||
REMOTE_EXEC = "ssh -o User=root -q"
|
REMOTE_EXEC = "ssh -o User=root"
|
||||||
|
|
||||||
class Error(Exception):
|
class Error(Exception):
|
||||||
"""Base exception class for this project"""
|
"""Base exception class for this project"""
|
||||||
|
|
|
@ -33,6 +33,7 @@ import tempfile
|
||||||
import cdist
|
import cdist
|
||||||
import cdist.message
|
import cdist.message
|
||||||
from cdist import core
|
from cdist import core
|
||||||
|
import cdist.exec.util as exec_util
|
||||||
|
|
||||||
class Local(object):
|
class Local(object):
|
||||||
"""Execute commands locally.
|
"""Execute commands locally.
|
||||||
|
@ -203,12 +204,14 @@ class Local(object):
|
||||||
env.update(message.env)
|
env.update(message.env)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
output = exec_util.call_get_output(command, env=env)
|
||||||
|
self.log.debug("Local output: {}".format(output))
|
||||||
if return_output:
|
if return_output:
|
||||||
return subprocess.check_output(command, env=env).decode()
|
return output.decode()
|
||||||
else:
|
except subprocess.CalledProcessError as e:
|
||||||
subprocess.check_call(command, env=env)
|
raise cdist.Error("Command failed: " + " ".join(command)
|
||||||
except subprocess.CalledProcessError:
|
+ " with returncode: {} and output: {}".format(
|
||||||
raise cdist.Error("Command failed: " + " ".join(command))
|
e.returncode, e.output))
|
||||||
except OSError as error:
|
except OSError as error:
|
||||||
raise cdist.Error(" ".join(command) + ": " + error.args[1])
|
raise cdist.Error(" ".join(command) + ": " + error.args[1])
|
||||||
finally:
|
finally:
|
||||||
|
|
|
@ -26,6 +26,7 @@ import sys
|
||||||
import glob
|
import glob
|
||||||
import subprocess
|
import subprocess
|
||||||
import logging
|
import logging
|
||||||
|
import cdist.exec.util as exec_util
|
||||||
|
|
||||||
import cdist
|
import cdist
|
||||||
|
|
||||||
|
@ -167,12 +168,14 @@ class Remote(object):
|
||||||
|
|
||||||
self.log.debug("Remote run: %s", command)
|
self.log.debug("Remote run: %s", command)
|
||||||
try:
|
try:
|
||||||
|
output = exec_util.call_get_output(command, env=os_environ)
|
||||||
|
self.log.debug("Remote output: {}".format(output))
|
||||||
if return_output:
|
if return_output:
|
||||||
return subprocess.check_output(command, env=os_environ).decode()
|
return output.decode()
|
||||||
else:
|
except subprocess.CalledProcessError as e:
|
||||||
subprocess.check_call(command, env=os_environ)
|
raise cdist.Error("Command failed: " + " ".join(command)
|
||||||
except subprocess.CalledProcessError:
|
+ " with returncode: {} and output: {}".format(
|
||||||
raise cdist.Error("Command failed: " + " ".join(command))
|
e.returncode, e.output))
|
||||||
except OSError as error:
|
except OSError as error:
|
||||||
raise cdist.Error(" ".join(command) + ": " + error.args[1])
|
raise cdist.Error(" ".join(command) + ": " + error.args[1])
|
||||||
except UnicodeDecodeError:
|
except UnicodeDecodeError:
|
||||||
|
|
39
cdist/exec/util.py
Normal file
39
cdist/exec/util.py
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# 2016 Darko Poljak (darko.poljak at gmail.com)
|
||||||
|
#
|
||||||
|
# This file is part of cdist.
|
||||||
|
#
|
||||||
|
# cdist is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# cdist is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
from tempfile import TemporaryFile
|
||||||
|
|
||||||
|
import cdist
|
||||||
|
|
||||||
|
def call_get_output(command, env=None):
|
||||||
|
"""Run the given command with the given environment.
|
||||||
|
Return the stdout and stderr output as a byte string.
|
||||||
|
"""
|
||||||
|
assert isinstance(command, (list, tuple)), "list or tuple argument expected, got: {}".format(command)
|
||||||
|
|
||||||
|
with TemporaryFile() as fout:
|
||||||
|
subprocess.check_call(command, env=env,
|
||||||
|
stdout=fout, stderr=subprocess.STDOUT)
|
||||||
|
fout.seek(0)
|
||||||
|
output = fout.read()
|
||||||
|
|
||||||
|
return output
|
59
completions/bash/cdist-completion.bash
Normal file
59
completions/bash/cdist-completion.bash
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
_cdist()
|
||||||
|
{
|
||||||
|
local cur prev prevprev opts cmds projects
|
||||||
|
COMPREPLY=()
|
||||||
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
||||||
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
||||||
|
prevprev="${COMP_WORDS[COMP_CWORD-2]}"
|
||||||
|
opts="-h --help -d --debug -v --verbose -V --version"
|
||||||
|
cmds="banner shell config"
|
||||||
|
|
||||||
|
case "${prevprev}" in
|
||||||
|
shell)
|
||||||
|
case "${prev}" in
|
||||||
|
-s|--shell)
|
||||||
|
shells=$(grep -v '^#' /etc/shells)
|
||||||
|
COMPREPLY=( $(compgen -W "${shells}" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case "${prev}" in
|
||||||
|
-*)
|
||||||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
banner)
|
||||||
|
opts="-h --help -d --debug -v --verbose"
|
||||||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
shell)
|
||||||
|
opts="-h --help -d --debug -v --verbose -s --shell"
|
||||||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
config)
|
||||||
|
opts="-h --help -d --debug -v --verbose \
|
||||||
|
-c --conf-dir -f --file -i --initial-manifest -n --dry-run \
|
||||||
|
-o --out-dir -p --parallel -s --sequential --remote-copy \
|
||||||
|
--remote-exec"
|
||||||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ ${cur} == -* ]]; then
|
||||||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
COMPREPLY=( $(compgen -W "${cmds}" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
complete -F _cdist cdist
|
48
completions/zsh/_cdist
Normal file
48
completions/zsh/_cdist
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
#compdef cdist
|
||||||
|
|
||||||
|
_cdist()
|
||||||
|
{
|
||||||
|
local curcontext="$curcontext" state line
|
||||||
|
typeset -A opt_args
|
||||||
|
|
||||||
|
_arguments \
|
||||||
|
'1: :->opts_cmds'\
|
||||||
|
'*: :->opts'
|
||||||
|
|
||||||
|
case $state in
|
||||||
|
opts_cmds)
|
||||||
|
_arguments '1:Options and commands:(banner config shell -h --help -d --debug -v --verbose -V --version)'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
case $words[2] in
|
||||||
|
-*)
|
||||||
|
opts=(-h --help -d --debug -v --verbose -V --version)
|
||||||
|
compadd "$@" -- $opts
|
||||||
|
;;
|
||||||
|
banner)
|
||||||
|
opts=(-h --help -d --debug -v --verbose)
|
||||||
|
compadd "$@" -- $opts
|
||||||
|
;;
|
||||||
|
shell)
|
||||||
|
case $words[3] in
|
||||||
|
-s|--shell)
|
||||||
|
shells=($(grep -v '^#' /etc/shells))
|
||||||
|
compadd "$@" -- $shells
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
opts=(-h --help -d --debug -v --verbose -s --shell)
|
||||||
|
compadd "$@" -- $opts
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
config)
|
||||||
|
opts=(-h --help -d --debug -v --verbose -c --conf-dir -f --file -i --initial-manifest -n --dry-run -o --out-dir -p --parallel -s --sequential --remote-copy --remote-exec)
|
||||||
|
compadd "$@" -- $opts
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
_cdist "$@"
|
|
@ -3,6 +3,8 @@ Changelog
|
||||||
|
|
||||||
next:
|
next:
|
||||||
* Core: Fix conflicting requirements (Darko Poljak)
|
* Core: Fix conflicting requirements (Darko Poljak)
|
||||||
|
* Custom: Add bash and zsh completions (Darko Poljak)
|
||||||
|
* Core: Improve error reporting for local and remote run command (Darko Poljak)
|
||||||
* New type: __jail_freebsd9: Handle jail management on FreeBSD <= 9.X (Jake Guffey)
|
* New type: __jail_freebsd9: Handle jail management on FreeBSD <= 9.X (Jake Guffey)
|
||||||
* New type: __jail_freebsd10: Handle jail management on FreeBSD >= 10.0 (Jake Guffey)
|
* New type: __jail_freebsd10: Handle jail management on FreeBSD >= 10.0 (Jake Guffey)
|
||||||
* Type __jail: Dynamically select the correct jail subtype based on target host OS (Jake Guffey)
|
* Type __jail: Dynamically select the correct jail subtype based on target host OS (Jake Guffey)
|
||||||
|
|
|
@ -26,8 +26,11 @@ def inspect_ssh_mux_opts(control_path_dir="~/.ssh/"):
|
||||||
import subprocess
|
import subprocess
|
||||||
import os
|
import os
|
||||||
|
|
||||||
control_path = os.path.join(control_path_dir,
|
# socket is always local to each cdist run, it is created in
|
||||||
"cdist.socket.master-%l-%r@%h:%p")
|
# temp directory that is created at starting cdist, so
|
||||||
|
# control_path file name can be static, it will always be
|
||||||
|
# unique due to unique temp directory name
|
||||||
|
control_path = os.path.join(control_path_dir, "ssh-control-path")
|
||||||
wanted_mux_opts = {
|
wanted_mux_opts = {
|
||||||
"ControlPath": control_path,
|
"ControlPath": control_path,
|
||||||
"ControlMaster": "auto",
|
"ControlMaster": "auto",
|
||||||
|
@ -147,7 +150,7 @@ def commandline():
|
||||||
# didn't specify command line options nor env vars:
|
# didn't specify command line options nor env vars:
|
||||||
# inspect multiplexing options for default cdist.REMOTE_COPY/EXEC
|
# inspect multiplexing options for default cdist.REMOTE_COPY/EXEC
|
||||||
if args_dict['remote_copy'] is None or args_dict['remote_exec'] is None:
|
if args_dict['remote_copy'] is None or args_dict['remote_exec'] is None:
|
||||||
control_path_dir = tempfile.mkdtemp()
|
control_path_dir = tempfile.mkdtemp(prefix="cdist")
|
||||||
import atexit
|
import atexit
|
||||||
atexit.register(lambda: shutil.rmtree(control_path_dir))
|
atexit.register(lambda: shutil.rmtree(control_path_dir))
|
||||||
mux_opts = inspect_ssh_mux_opts(control_path_dir)
|
mux_opts = inspect_ssh_mux_opts(control_path_dir)
|
||||||
|
|
Loading…
Reference in a new issue