You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QA/tests/p_crypto-policies/001-prepare_environment.sh

15 lines
732 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#!/bin/bash
echo "Подготовка окружения для тестирования пакета ${TEST_PACKAGE_NAME}"
# в пакете crypto-policies слабай зависимость на этот пакет,
# поэтому для надёжности устанавливаем его вручную
/bin/yum -y install openssl-gost-engine
# Обновляем passwd, чтобы он показывал, что пароль пользователя использует GOST crypt
# Старый пакет passwd не понимает GOST crypt и выводит "unknown crypt".
# В этом случае рухнет тесткейс 5 теста 07-passwd-gost-crypting.sh
/bin/yum -y update passwd
exit 0