ALT Linux Team development discussions
 help / color / mirror / Atom feed
From: "Dmitry V. Levin" <ldv@altlinux.org>
To: ALT Devel discussion list <devel@lists.altlinux.org>
Subject: Re: [devel] golang
Date: Sat, 2 May 2020 16:44:25 +0300
Message-ID: <20200502134425.GA17763@altlinux.org> (raw)
In-Reply-To: <20200502132516.GA2856079@portlab>

On Sat, May 02, 2020 at 04:25:16PM +0300, Vladimir D. Seleznev wrote:
> On Sat, May 02, 2020 at 01:47:32PM +0300, Alexey V. Vissarionov wrote:
> > On 2020-05-01 23:15:08 +0300, Vladimir D. Seleznev wrote:
> > 
> >  >> Интересно, зачем пакету golang нужен libselinux-utils? (Смотрю в p9)
> >  > $ rpm -qRp /ALT/repo/p9/release/latest/x86_64/RPMS.classic/golang-1.12.17-alt1.x86_64.rpm |grep selinux
> >  > /usr/sbin/selinuxenabled
> >  > Это — автоматически сгенерированная зависимость,
> >  > получившаяся из-за этого скрипта, упакованного в пакет golang:
> >  > $ grep "/usr/sbin/selinuxenabled" /usr/lib64/golang/src/make.bash
> >  >	if [ -d $se_mount -a -f $se_mount/booleans/allow_execstack -a
> >  > -x /usr/sbin/selinuxenabled ] &
> >  >	/usr/sbin/selinuxenabled; then
> > 
> > И как такое отключать? Очевидно же, что нужды в libselinux-utils у сабжа
> > нет, несмотря на то, что сабж умеет с ним работать - потому что он умеет
> > работать и без него.
> > 
> > Нужен какой-то %requires_skip
> 
> Как уже раньше написали, можно использовать %filter_from_requires.
> 
> Для автосгенерированных шелл-зависимостей есть хак с написание перед
> командой фиктивной переменной окружения, однако учитывайте, что
> некоторые переменные окружения могут повлиять на выполнение программы:
> 
>  do
> -       if [ -d $se_mount -a -f $se_mount/booleans/allow_execstack -a -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then
> +       if [ -d $se_mount -a -f $se_mount/booleans/allow_execstack -a -x /usr/sbin/selinuxenabled ] && noreq= /usr/sbin/selinuxenabled; then
>                 if ! cat $se_mount/booleans/allow_execstack | grep -c '^1 1$' >> /dev/null ; then

Раньше или позже этот код перестанет работать правильно, потому что
местоположение /usr/sbin/selinuxenabled не вечно, а
хак с переменной в любой момент может оказаться исправленным.

Надёжнее будет работать следующий подход:

selinuxenabled=selinuxenabled
if [ -d $se_mount -a -f $se_mount/booleans/allow_execstack ] && type $selinuxenabled >/dev/null 2>&1 && $selinuxenabled; then


-- 
ldv


      reply	other threads:[~2020-05-02 13:44 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-01 12:27 Alexey Appolonov
2020-05-01 20:15 ` Vladimir D. Seleznev
2020-05-02 10:47   ` Alexey V. Vissarionov
2020-05-02 11:32     ` Pavel Vainerman
2020-05-02 11:50       ` Alexey V. Vissarionov
2020-05-02 12:53         ` alexei
2020-05-02 12:59           ` Alexey V. Vissarionov
2020-05-02 13:25     ` Vladimir D. Seleznev
2020-05-02 13:44       ` Dmitry V. Levin [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200502134425.GA17763@altlinux.org \
    --to=ldv@altlinux.org \
    --cc=devel@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Team development discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
		devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
	public-inbox-index devel

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git