From a56dfa65cbd040300c968e0e50e1dd2e33986254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Fri, 15 Nov 2019 11:00:41 +0300 Subject: [PATCH] =?UTF-8?q?sys-apps/calculate-utils:=20=D1=88=D0=B0=D0=B1?= =?UTF-8?q?=D0=BB=D0=BE=D0=BD=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * добавлен profile.bashrc для исправления генерации сертификатов при установке бинарных пакетов, так как при генерации сертификата рандомизация ссылается на файл eclass-debug.log, который отсутствует в бинарном пакете --- .../profile.bashrc.d/60-fix-certgen | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 profiles/templates/3.6/2_ac_install_merge/sys-apps/calculate-utils/profile.bashrc.d/60-fix-certgen diff --git a/profiles/templates/3.6/2_ac_install_merge/sys-apps/calculate-utils/profile.bashrc.d/60-fix-certgen b/profiles/templates/3.6/2_ac_install_merge/sys-apps/calculate-utils/profile.bashrc.d/60-fix-certgen new file mode 100644 index 000000000..da0836d16 --- /dev/null +++ b/profiles/templates/3.6/2_ac_install_merge/sys-apps/calculate-utils/profile.bashrc.d/60-fix-certgen @@ -0,0 +1,15 @@ +# Calculate comment=# +# vim: set syntax=sh +# +# Copyright 2014 Calculate Ltd. http://www.calculate-linux.org +# +# 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 + +if [[ ${EBUILD_PHASE} == "postinst" ]] +then + echo $RANDOM >>${T}/eclass-debug.log +fi