Use keygenerator from the bindir (#5600)

This commit is contained in:
Andrew Jeffery 2023-09-01 09:41:00 +01:00 коммит произвёл GitHub
Родитель 1454542a22
Коммит a49343ad18
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -529,7 +529,7 @@ class Network:
# It is more convenient to create a symlink in the common directory than generate
# certs and keys in the top directory and move them across
cmd = ["cp"] if IS_SNP else ["ln", "-s"]
cmd += [os.path.join(os.getcwd(), self.KEY_GEN), self.common_dir]
cmd += [self.key_generator, self.common_dir]
assert (
infra.proc.ccall(*cmd).returncode == 0
), f"Could not symlink {self.KEY_GEN} to {self.common_dir}"