e7e4344509
It is necessary to pass the --force flag to ansible-galaxy to ensure roles are upgraded during kayobe control host upgrade.
119 lines
3.7 KiB
Python
119 lines
3.7 KiB
Python
# Copyright (c) 2017 StackHPC Ltd.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import logging
|
|
import os
|
|
import six
|
|
import subprocess
|
|
import sys
|
|
|
|
import yaml
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def yum_install(packages):
|
|
"""Install a list of packages via Yum."""
|
|
cmd = ["sudo", "yum", "-y", "install"]
|
|
cmd += packages
|
|
try:
|
|
run_command(cmd)
|
|
except subprocess.CalledProcessError as e:
|
|
print("Failed to install packages %s via Yum: returncode %d" %
|
|
(", ".join(packages), e.returncode))
|
|
sys.exit(e.returncode)
|
|
|
|
|
|
def galaxy_install(role_file, roles_path, force=False):
|
|
"""Install Ansible roles via Ansible Galaxy."""
|
|
cmd = ["ansible-galaxy", "install"]
|
|
cmd += ["--roles-path", roles_path]
|
|
cmd += ["--role-file", role_file]
|
|
if force:
|
|
cmd += ["--force"]
|
|
try:
|
|
run_command(cmd)
|
|
except subprocess.CalledProcessError as e:
|
|
LOG.error("Failed to install Ansible roles from %s via Ansible "
|
|
"Galaxy: returncode %d", role_file, e.returncode)
|
|
sys.exit(e.returncode)
|
|
|
|
|
|
def read_file(path, mode="r"):
|
|
"""Read the content of a file."""
|
|
with open(path, mode) as f:
|
|
return f.read()
|
|
|
|
|
|
def read_yaml_file(path):
|
|
"""Read and decode a YAML file."""
|
|
try:
|
|
content = read_file(path)
|
|
except IOError as e:
|
|
print("Failed to open config dump file %s: %s" %
|
|
(path, repr(e)))
|
|
sys.exit(1)
|
|
try:
|
|
return yaml.load(content)
|
|
except yaml.YAMLError as e:
|
|
print("Failed to decode config dump YAML file %s: %s" %
|
|
(path, repr(e)))
|
|
sys.exit(1)
|
|
|
|
|
|
def is_readable_dir(path):
|
|
"""Check whether a path references a readable directory."""
|
|
if not os.path.exists(path):
|
|
return {"result": False, "message": "Path does not exist"}
|
|
if not os.path.isdir(path):
|
|
return {"result": False, "message": "Path is not a directory"}
|
|
if not os.access(path, os.R_OK):
|
|
return {"result": False, "message": "Directory is not readable"}
|
|
return {"result": True}
|
|
|
|
|
|
def is_readable_file(path):
|
|
"""Check whether a path references a readable file."""
|
|
if not os.path.exists(path):
|
|
return {"result": False, "message": "Path does not exist"}
|
|
if not os.path.isfile(path):
|
|
return {"result": False, "message": "Path is not a file"}
|
|
if not os.access(path, os.R_OK):
|
|
return {"result": False, "message": "File is not readable"}
|
|
return {"result": True}
|
|
|
|
|
|
def run_command(cmd, quiet=False, check_output=False, **kwargs):
|
|
"""Run a command, checking the output.
|
|
|
|
:param quiet: Redirect output to /dev/null
|
|
:param check_output: Whether to return the output of the command
|
|
:returns: The output of the command if check_output is true
|
|
"""
|
|
if isinstance(cmd, six.string_types):
|
|
cmd_string = cmd
|
|
else:
|
|
cmd_string = " ".join(cmd)
|
|
LOG.debug("Running command: %s", cmd_string)
|
|
if quiet:
|
|
with open("/dev/null", "w") as devnull:
|
|
kwargs["stdout"] = devnull
|
|
kwargs["stderr"] = devnull
|
|
subprocess.check_call(cmd, **kwargs)
|
|
elif check_output:
|
|
return subprocess.check_output(cmd, **kwargs)
|
|
else:
|
|
subprocess.check_call(cmd, **kwargs)
|