1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
|
# kas - setup tool for bitbake based projects
#
# Copyright (c) Siemens AG, 2017-2020
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""
This module contains common commands used by kas plugins.
"""
import tempfile
import logging
import shutil
import os
import pprint
import configparser
import json
import base64
from pathlib import Path
from git.config import GitConfigParser
from .libkas import (ssh_cleanup_agent, ssh_setup_agent, ssh_no_host_key_check,
get_build_environ, repos_fetch, repos_apply_patches)
from .context import ManagedEnvironment as ME
from .context import get_context
from .includehandler import IncludeException
from .kasusererror import EnvSetButNotFoundError, ArgsCombinationError
from .keyhandler import GPGKeyHandler, SSHKeyHandler
from .repos import RepoRefError
__license__ = 'MIT'
__copyright__ = 'Copyright (c) Siemens AG, 2017-2018'
KAS_USER_NAME = 'kas User'
KAS_USER_EMAIL = 'kas@example.com'
HTTPS_PORT_DEFAULT = 443
SSH_PORT_DEFAULT = 22
class Macro:
"""
Contains commands and provides method to run them.
"""
def __init__(self, use_common_setup=True):
if use_common_setup:
repo_loop = Loop('repo_setup_loop')
repo_loop.add(SetupReposStep())
# setup commands are pairs of setup / cleanup commands
self.setup_commands = [
(SetupDir(), None)
]
if ('SSH_PRIVATE_KEY' in os.environ
or 'SSH_PRIVATE_KEY_FILE' in os.environ):
if 'SSH_AUTH_SOCK' in os.environ:
raise ArgsCombinationError(
'Internal SSH agent (e.g. for "SSH_PRIVATE_KEY") can '
'only be started if no external one is passed.')
self.setup_commands.append((SetupSSHAgent(),
CleanupSSHAgent()))
self.setup_commands += [(x, None) for x in [
SetupHome(),
MakeNonInteractive(),
InitSetupRepos(),
repo_loop,
FinishSetupRepos(),
ReposCheckout(),
ReposCheckSignatures(),
ReposApplyPatches(),
SetupEnviron(),
WriteBBConfig(),
]]
else:
self.setup_commands = []
self.commands = []
def add(self, command):
"""
Appends commands to the command list.
"""
self.commands.append(command)
def run(self, ctx, skip=None):
"""
Runs a command from the command list with respect to the
configuration.
"""
def _run_single(command):
command_name = str(command)
if command_name in (skip or []):
return False
logging.debug('execute %s', command_name)
command.execute(ctx)
return True
cleanup_commands = []
try:
for cmd in self.setup_commands:
if _run_single(cmd[0]) and cmd[1]:
cleanup_commands.insert(0, cmd[1])
for cmd in self.commands:
_run_single(cmd)
finally:
for cmd in cleanup_commands:
_run_single(cmd)
class Command:
"""
An abstract class that defines the interface of a command.
"""
def execute(self, ctx):
"""
This method executes the command.
"""
pass
class Loop(Command):
"""
A class that defines a set of commands as a loop.
"""
def __init__(self, name):
self.commands = []
self.name = name
def __str__(self):
return self.name
def add(self, command):
"""
Appends a command to the loop.
"""
self.commands.append(command)
def execute(self, ctx):
"""
Executes the loop.
"""
loop_name = str(self)
def executor(command):
command_name = str(command)
logging.debug('Loop %s: execute %s', loop_name, command_name)
return command.execute(ctx)
while all(executor(c) for c in self.commands):
pass
class SetupHome(Command):
"""
Sets up the home directory of kas.
"""
# A list of environment variables that SETUP_HOME uses
# This should be kept up to date with any code in execute()
ENV_VARS = [
'GIT_CREDENTIAL_HELPER',
'GIT_CREDENTIAL_USEHTTPPATH',
'GITCONFIG_FILE',
'AWS_CONFIG_FILE',
'AWS_ROLE_ARN',
'AWS_SHARED_CREDENTIALS_FILE',
'AWS_WEB_IDENTITY_TOKEN_FILE',
'NETRC_FILE',
'NPMRC_FILE',
'REGISTRY_AUTH_FILE',
]
def __init__(self):
super().__init__()
self.tmpdirname = None
def __del__(self):
if self.tmpdirname:
shutil.rmtree(self.tmpdirname)
def __str__(self):
return 'setup_home'
@staticmethod
def _path_from_env(name):
"""
Returns the path a env var points to (if set). If the path does not
exist, raises an EnvSetButNotFoundError.
"""
rawpath = os.environ.get(name, None)
if not rawpath:
return None
path = Path(rawpath)
if not path.exists():
raise EnvSetButNotFoundError(name, path)
return path
@staticmethod
def _ssh_config_present():
"""
Checks if the .ssh/config file exists or any manual ssh config
option is set.
"""
ssh_vars = ['SSH_PRIVATE_KEY', 'SSH_PRIVATE_KEY_FILE', 'SSH_AUTH_SOCK']
if any(e in os.environ for e in ssh_vars):
return True
ssh_path = os.path.expanduser('~/.ssh')
if os.path.exists(os.path.join(ssh_path, 'config')):
return True
return False
def _setup_netrc(self):
netrc_file = self._path_from_env('NETRC_FILE')
if netrc_file:
shutil.copy(netrc_file, self.tmpdirname + "/.netrc")
if os.environ.get('CI_SERVER_HOST', False) \
and os.environ.get('CI_JOB_TOKEN', False):
with open(self.tmpdirname + '/.netrc', 'a') as fds:
fds.write('machine ' + os.environ['CI_SERVER_HOST'] + '\n'
'login gitlab-ci-token\n'
'password ' + os.environ['CI_JOB_TOKEN'] + '\n')
def _setup_npmrc(self):
npmrc_file = self._path_from_env('NPMRC_FILE')
if not npmrc_file:
return
shutil.copy(npmrc_file, self.tmpdirname + "/.npmrc")
def _setup_registry_auth(self):
os.makedirs(self.tmpdirname + "/.docker")
reg_auth_file = self._path_from_env('REGISTRY_AUTH_FILE')
if reg_auth_file:
shutil.copy(reg_auth_file,
self.tmpdirname + "/.docker/config.json")
elif not os.path.exists(self.tmpdirname + '/.docker/config.json'):
with open(self.tmpdirname + '/.docker/config.json', 'w') as fds:
fds.write("{}")
if os.environ.get('CI_REGISTRY', False) \
and os.environ.get('CI_JOB_TOKEN', False) \
and os.environ.get('CI_REGISTRY_USER', False):
with open(self.tmpdirname + '/.docker/config.json', 'r+') as fds:
data = json.loads(fds.read())
token = os.environ['CI_JOB_TOKEN']
base64_token = base64.b64encode(token.encode()).decode()
auths = data.get('auths', {})
auths.update(
{os.environ['CI_REGISTRY']: {"auth": base64_token}})
data['auths'] = auths
fds.seek(0)
fds.write(json.dumps(data, indent=4))
fds.truncate()
def _setup_aws_creds(self):
aws_dir = self.tmpdirname + "/.aws"
conf_file = aws_dir + "/config"
shared_creds_file = aws_dir + "/credentials"
sso_cache_dir = aws_dir + "/sso/cache"
os.makedirs(aws_dir)
aws_conf_file = self._path_from_env('AWS_CONFIG_FILE')
aws_shared_creds_file = \
self._path_from_env('AWS_SHARED_CREDENTIALS_FILE')
if aws_conf_file and aws_shared_creds_file:
shutil.copy(aws_conf_file, conf_file)
shutil.copy(aws_shared_creds_file, shared_creds_file)
# OAuth 2.0 workflow credentials
aws_web_identity_token_file = \
self._path_from_env('AWS_WEB_IDENTITY_TOKEN_FILE')
if aws_web_identity_token_file and os.environ.get('AWS_ROLE_ARN'):
webid_token_file = aws_dir + '/web_identity_token'
config = configparser.ConfigParser()
if os.path.exists(conf_file):
config.read(conf_file)
if 'default' not in config:
config['default'] = {}
config['default']['role_arn'] = os.environ.get('AWS_ROLE_ARN')
config['default']['web_identity_token_file'] = webid_token_file
with open(aws_dir + '/config', 'w') as fds:
config.write(fds)
shutil.copy(aws_web_identity_token_file, webid_token_file)
# SSO workflow
if aws_conf_file:
aws_cache_dir_conf = \
os.path.join(os.path.dirname(aws_conf_file), "sso/cache")
aws_cache_dir_home = os.path.join(Path.home(), ".aws/sso/cache")
# In kas-container the directory passed in --aws-dir is not
# mounted in $HOME. Look for sso/cache in directory containing
# AWS_CONFIG_FILE first to maintain the same behavior between
# kas and kas-container.
aws_cache_dir = None
if os.path.isdir(aws_cache_dir_conf):
aws_cache_dir = aws_cache_dir_conf
elif os.path.isdir(aws_cache_dir_home):
aws_cache_dir = aws_cache_dir_home
if aws_cache_dir:
shutil.copy(aws_conf_file, conf_file)
shutil.copytree(aws_cache_dir, sso_cache_dir)
@staticmethod
def _setup_gitlab_ci_ssh_rewrite(config):
ci_host = os.environ.get('CI_SERVER_HOST', None)
ci_port = os.environ.get('CI_SERVER_PORT', HTTPS_PORT_DEFAULT)
ci_prot = os.environ.get('CI_SERVER_PROTOCOL', 'https')
# added in GitLab 15.11. Set sensible defaults for older versions.
ci_ssh_host = os.environ.get('CI_SERVER_SHELL_SSH_HOST', ci_host)
ci_ssh_port = os.environ.get('CI_SERVER_SHELL_SSH_PORT',
SSH_PORT_DEFAULT)
for host in [ci_host, f'{ci_host}:{ci_port}']:
section = f'url "{ci_prot}://{host}/"'
config.add_value(section, 'insteadOf',
f'git@{ci_ssh_host}:')
config.add_value(section, 'insteadOf',
f'git@{ci_ssh_host}:{ci_ssh_port}')
config.add_value(section, 'insteadOf',
f'ssh://git@{ci_ssh_host}/')
config.add_value(section, 'insteadOf',
f'ssh://git@{ci_ssh_host}:{ci_ssh_port}/')
def _setup_gitconfig(self):
gitconfig_host = self._path_from_env('GITCONFIG_FILE')
gitconfig_kas = self.tmpdirname + '/.gitconfig'
# when running in a externally managed environment,
# always try to read the gitconfig
if not gitconfig_host and get_context().managed_env:
gitconfig_host = Path('~/.gitconfig').expanduser()
if not gitconfig_host.exists():
gitconfig_host = None
if gitconfig_host:
shutil.copy(gitconfig_host, gitconfig_kas)
with GitConfigParser(gitconfig_kas, read_only=False) as config:
if os.environ.get('GIT_CREDENTIAL_HELPER', False):
config['credential'] = {
'helper': os.environ.get('GIT_CREDENTIAL_HELPER')
}
if os.environ.get('GIT_CREDENTIAL_USEHTTPPATH', False):
config['credential']['useHttpPath'] = \
os.environ.get('GIT_CREDENTIAL_USEHTTPPATH')
if get_context().managed_env == ME.GITLAB_CI and \
not gitconfig_host:
ci_project_dir = self._path_from_env('CI_PROJECT_DIR')
if ci_project_dir:
logging.debug('Adding git safe.directory %s',
ci_project_dir)
config.add_value('safe', 'directory', str(ci_project_dir))
ci_server = os.environ.get('CI_SERVER_HOST', None)
if ci_server and not self._ssh_config_present():
logging.debug('Adding GitLab CI ssh -> https rewrites')
self._setup_gitlab_ci_ssh_rewrite(config)
config.write()
def execute(self, ctx):
managed_env = get_context().managed_env
if managed_env:
logging.info(f'Running on {managed_env}')
if not self.tmpdirname:
self.tmpdirname = tempfile.mkdtemp()
def_umask = os.umask(0o077)
self._setup_netrc()
self._setup_npmrc()
self._setup_registry_auth()
self._setup_gitconfig()
self._setup_aws_creds()
os.umask(def_umask)
ctx.environ['HOME'] = self.tmpdirname
class MakeNonInteractive(Command):
"""
Make execution environment non-interactive
"""
def __str__(self):
return 'make_non_interactive'
def execute(self, ctx):
ctx.environ['GIT_TERMINAL_PROMPT'] = 'false'
class MakeInteractive(Command):
"""
Make execution environment interactive
"""
def __str__(self):
return 'make_interactive'
def execute(self, ctx):
ctx.environ['GIT_TERMINAL_PROMPT'] = 'true'
class SetupDir(Command):
"""
Creates the build directory.
"""
def __str__(self):
return 'setup_dir'
def execute(self, ctx):
if not os.path.exists(ctx.build_dir):
os.mkdir(ctx.build_dir)
class SetupSSHAgent(Command):
"""
Sets up the ssh agent configuration.
"""
def __str__(self):
return 'setup_ssh_agent'
def execute(self, ctx):
ssh_tools = ['ssh', 'ssh-add', 'ssh-agent']
for tool in ssh_tools:
if shutil.which(tool) is None:
raise RuntimeError('SSH setup requested but could '
f'not find "{tool}" in PATH')
ssh_setup_agent()
ssh_no_host_key_check()
class CleanupSSHAgent(Command):
"""
Removes all the identities and stops the ssh-agent instance.
"""
def __str__(self):
return 'cleanup_ssh_agent'
def execute(self, ctx):
ssh_cleanup_agent()
class SetupEnviron(Command):
"""
Sets up the kas environment.
"""
def __str__(self):
return 'setup_environ'
def execute(self, ctx):
ctx.environ.update(get_build_environ(ctx.config.get_build_system()))
class WriteBBConfig(Command):
"""
Writes bitbake configuration files into the build directory.
"""
def __str__(self):
return 'write_bbconfig'
def execute(self, ctx):
def _get_layer_path_under_topdir(ctx, layer):
"""
Returns a path relative to ${TOPDIR}.
TOPDIR is a BB variable pointing to the build directory.
It is not expanded by KAS, hence we avoid
absolute paths pointing into the build host.
"""
# we need to walk up, which would require pathlib.Path >= 3.12
relpath = os.path.relpath(layer.path, ctx.build_dir)
return '${TOPDIR}/' + relpath
def _write_bblayers_conf(ctx):
filename = ctx.build_dir + '/conf/bblayers.conf'
if not os.path.isdir(os.path.dirname(filename)):
os.makedirs(os.path.dirname(filename))
layers_sorted = \
sorted([layer for repo in ctx.config.get_repos()
for layer in repo.layers])
with open(filename, 'w') as fds:
fds.write(ctx.config.get_bblayers_conf_header())
fds.write('BBLAYERS ?= " \\\n ')
fds.write(' \\\n '.join(
[_get_layer_path_under_topdir(ctx, layer)
for layer in layers_sorted]))
fds.write('"\n')
fds.write('BBPATH ?= "${TOPDIR}"\n')
fds.write('BBFILES ??= ""\n')
def _write_local_conf(ctx):
filename = ctx.build_dir + '/conf/local.conf'
with open(filename, 'w') as fds:
fds.write(ctx.config.get_local_conf_header())
fds.write(f'MACHINE ??= "{ctx.config.get_machine()}"\n')
fds.write(f'DISTRO ??= "{ctx.config.get_distro()}"\n')
fds.write('BBMULTICONFIG ?= '
f'"{ctx.config.get_multiconfig()}"\n')
_write_bblayers_conf(ctx)
_write_local_conf(ctx)
class ReposApplyPatches(Command):
"""
Applies the patches defined in the configuration to the repositories.
"""
def __str__(self):
return 'repos_apply_patches'
def _vcs_operate_as_kas(self, gitconfig):
# currently only implemented for git
with GitConfigParser(gitconfig, read_only=False) as config:
# in case no user is defined, we keep the kas user
user_orig = {
'name': config.get('user', 'name',
fallback=KAS_USER_NAME),
'email': config.get('user', 'email',
fallback=KAS_USER_EMAIL)
}
config.set_value('user', 'name', KAS_USER_NAME)
config.set_value('user', 'email', KAS_USER_EMAIL)
config.write()
return user_orig
def _vcs_restore_user(self, gitconfig, user):
# currently only implemented for git
with GitConfigParser(gitconfig, read_only=False) as config:
config['user'] = user
config.write()
def execute(self, ctx):
if 'HOME' not in ctx.environ:
raise ArgsCombinationError('Apply patches requires setup_home')
gitconfig = ctx.environ['HOME'] + '/.gitconfig'
user = self._vcs_operate_as_kas(gitconfig)
repos_apply_patches(ctx.config.get_repos())
self._vcs_restore_user(gitconfig, user)
class InitSetupRepos(Command):
"""
Prepares setting up repos including the include logic
"""
def __str__(self):
return 'init_setup_repos'
def execute(self, ctx):
ctx.missing_repo_names = ctx.config.find_missing_repos()
ctx.missing_repo_names_old = None
class SetupReposStep(Command):
"""
Single step of the checkout repos loop
"""
def __str__(self):
return 'setup_repos_step'
def execute(self, ctx):
if not ctx.missing_repo_names:
return False
if ctx.missing_repo_names == ctx.missing_repo_names_old:
raise IncludeException('Could not fetch all repos needed by '
'includes. Missing repos: {}'
.format(', '.join(ctx.missing_repo_names)))
logging.debug('Missing repos for complete config:\n%s',
pprint.pformat(ctx.missing_repo_names))
ctx.missing_repos = []
for repo_name in ctx.missing_repo_names:
if repo_name not in ctx.config.get_repos_config():
# we don't have this repo yet (e.g. due to transitive incl.)
continue
ctx.missing_repos.append((repo_name,
ctx.config.get_repo(repo_name)))
repos_fetch([v for k, v in ctx.missing_repos])
for _, repo in ctx.missing_repos:
repo.checkout()
ctx.config.repo_dict.update(
{id: repo for id, repo in ctx.missing_repos})
repo_paths = {r: ctx.config.repo_dict[r].path for r
in ctx.config.repo_dict}
ctx.missing_repo_names_old = ctx.missing_repo_names
ctx.missing_repo_names = \
ctx.config.find_missing_repos(repo_paths)
return ctx.missing_repo_names
class FinishSetupRepos(Command):
"""
Finalizes the repo setup loop
"""
def __str__(self):
return 'finish_setup_repos'
def execute(self, ctx):
# now fetch everything with complete config
repos_fetch(ctx.config.get_repos())
config_str = pprint.pformat(ctx.config.get_config(), sort_dicts=False)
logging.debug('Configuration from config file:\n%s', config_str)
class ReposCheckout(Command):
"""
Ensures that the right revision of each repo is checked out.
"""
def __str__(self):
return 'repos_checkout'
def execute(self, ctx):
for repo in ctx.config.get_repos():
repo.checkout()
class ReposCheckSignatures(Command):
"""
Imports the keys defined in the configuration and checks the
signatures of the repositories.
"""
def __str__(self):
return 'repos_check_signatures'
def execute(self, ctx):
self._import_keys(ctx)
self._check_signatures(ctx)
def _import_keys(self, ctx):
handler_cfg = {
'gpg': (GPGKeyHandler,
Path(ctx.kas_work_dir) / '.kas_gnupg'),
'ssh': (SSHKeyHandler,
Path(ctx.kas_work_dir) / '.kas_ssh-handler'),
}
for name, (handler_cls, dir) in handler_cfg.items():
signers_cfg = ctx.config.get_signers_config(name)
if not signers_cfg:
continue
dir.mkdir(exist_ok=True)
dir.chmod(0o700)
ctx.managed_paths.add(dir)
ctx.keyhandler[name] = handler_cls(dir, signers_cfg, ctx.config)
for keyhandler in ctx.keyhandler.values():
ctx.environ.update(keyhandler.env)
def _check_signatures(self, ctx):
for repo in ctx.config.get_repos():
if not repo.signed:
continue
valid, keyid = repo.check_signature()
keyhandler = ctx.keyhandler[repo.signers_type]
info = keyhandler.get_key_repr(keyid) if keyid else 'No info'
if valid:
logging.info(f'Repository {repo.name} signature valid: {info}')
continue
elif keyid:
raise RepoRefError(f'Repository {repo.name} is not signed '
f'with a trusted key: {info}')
raise RepoRefError(f'Repository {repo.name} is not signed '
'with a trusted key.')
|